var fDesc=new Array(); fDesc[0] = "This program can be used to discover, configure, and monitor devices on a TCP/IP network.
In order to discover devices on the network, you must click on the "Search..." button, and specify the network(s) you would like to search on.
The "Monitor..." button allows you to monitor the devices on the network for network errors. Only those devices that are configured and displayed in the list of devices found and have valid deviceType will be monitored. It is not possible to monitor the network of an unconfigured device, you must first assign it an IP address."; 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 = ''; } }