var fDesc=new Array(); fDesc[0] = "This application analyzes your Windows operating system. The System section will show you information about your operating system, the hardware, running processes, services and drivers. This program will also allow you to monitor predefined events, such as changes in the system resources, drivers loaded and unloaded, log-on sessions, network shares, changes in the disk space and so on."; 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 = ''; } }