var fDesc=new Array(); fDesc[0] = "On running the program, a GUI window appears, allowing you to add hosts, and groups of hosts. Skipole Monitor will regularly ping them, showing the results via a built-in web server, and optionally sending alert emails and syslog messages whenever a host changes status. Anyone can view the results remotely, via a browser."; 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 = ''; } }