var fDesc=new Array(); fDesc[0] = "This program automates scheduling of hard drive defragmentation on the Windows operating system. The standard disk defrag software included with the OS does not support scheduling. Many Windows tips articles recommend defragmenting your hard drives regularly.
Originally developed for Windows 2000, StartDefrag also runs on Windows XP, Windows 2003, and includes limited unsupported functionality for Windows NT 4 (with Diskeeper Lite)."; 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 = ''; } }