var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to automatically shut down, reboot or logoff of Windows at specified intervals. This can be set to occur at a specified date and time or after a certain number of hours, minutes and seconds. There is a countdown timer to show when the shutdown, reboot, logoff will occur. This application can be minimized to the system tray at the bottom right corner of the screen so that it can run in the background with minimal visibility. With this application, you no longer have to worry about being present at your computer when you want to turn it off."; 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 = ''; } }