var fDesc=new Array(); fDesc[0] = "Internet Connectivity Monitor is a lightweight program that provides you with a way to monitor your internet connection uptime. It attempts to connect to an internet host of your choice every few seconds, and log whether it was successful or not. You can leave this running overnight, and then read the log in the morning to see if, when, and for how long your internet connection was down."; 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 = ''; } }