var fDesc=new Array();
fDesc[0] = "System Pitstop is a program designed to automate the maintenance of the Windows XP Operating System.
Main Features:
- Automatically executes Windows XP's proprietary programs; Chkdsk, System File Checker and Disk Defragmenter
- Automatically creates a Windows XP System Restore Point
- Automatically executes 3rd party programs
- Ability to automatically shutdown 3rd party programs after they have completed their tasks
- Includes separate execution timers for each program
- Can be scheduled via XP's Scheduled Tasks service
- Auto Startup option
- Provides various options to logoff/restart/shutdown the computer etc…
- Display startup or final action reminder
- Offers the option to create Chkdsk and Defragmenter logs
- Logs the date/time of all programs that have executed";
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 = '';
}
}