var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to automatically log internet connectivity at specified intervals. Ever wonder how reliable your internet connection is? This software provides a way to check the status of your internet connection immediately as well as log the status every 30 seconds, 1 minute, 5 minutes, 30 minutes, 1 hour, etc. This information can be very useful when tracking an issue with a service provider. This application sits in the system tray, at the bottom right corner of the screen."; 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 = ''; } }