var fDesc=new Array();
fDesc[0] = "The C-Bus IP Utility is used for commissioning the networking features of IP-based C-Bus products such as CNIs. It provides the ability to scan a LAN for C-Bus IP devices, and to set settings of a device such as the IP address and port number. If you have more than one network interface in your PC, when the C-Bus IP Utility first starts it will prompt you to choose one to scan.";
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 = '';
}
}