var fDesc=new Array(); fDesc[0] = "Program LBX communicates with control measurement devices and provides data to various applications. It works a client-server manner, where server communicates with the devices attached to PC. Server is also responsible for the management of data archives, monitoring of alarms, and signaling. Client program receives the presents the readout from remote devices. It can also present the archive data in various graphs, reports, and histograms."; 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 = ''; } }