var fDesc=new Array(); fDesc[0] = "The eDMX Configuration utility provides a simple interface to all device parameters. Typically these are set once during initial configuration and left untouched. Upon a startup, eDMX devices on the same subnet are automatically detected and displayed by IP address. You can repoll for new devices or just check if the communications are okay by clicking “Search For Devices”."; 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 = ''; } }