var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to automatically delete temporary files at specified intervals. There are check boxes for processing the Windows Temp folder, Recycle Bin and most recently used. The user chooses the required interval from a list: 5 minutes, 10 minutes, 1 hour, 2 hours, 4 hours, 8 hours, 16 hours, 1 day, 3 days or 1 week. There is a button to stop the program running automatically and another to run it during the interval."; 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 = ''; } }