var fDesc=new Array(); fDesc[0] = "PC8 Device Agent is an application that allows you to configure the PowerControl 8 device. The program will display a connection icon in the status bar, indicating that communication with the PC8 is established. Also, it will load and display the current settings of your PC8 automatically. The current settings can always be re-loaded by clicking Load from the PC8 button in the status bar. After configuring the PC8 using the PC8 Device Agent, click Save to PC8 to persist any changes you made to the PC8."; 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 = ''; } }