var fDesc=new Array();
fDesc[0] = "It is necessary to configure unit before its first use because new IG-IB from factory is not configured.
Internet Bridge can be connected to Internet via LAN – Ethernet connector or via dial up – MODEM connector. Maximal length of UTP cable (between IG-IB and Switching hub) is 100m according to IEEE 802.3.
IBConfig is a free configuration Tool for IG-IB.
- IG-IB unit is not configured from the factory
- IB Config enables ethernet LAN configuration or dialup connection configuration";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}