var fDesc=new Array(); fDesc[0] = "Aurora Communicator is a propram to access Power-One inverters to monitor energy usage. We get data in a graphical manner. The application uses a serial connection to communicate with the inverters. It can also use a TCP/IP – RS232 bridge adapter, to connect using a remote TCP/IP connection. It can do date/time synchronization, set the sampling time for measurement, and customize other parameters of the inverter."; 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 = ''; } }