var fDesc=new Array();
fDesc[0] = "Profile Cleaner is a tool for users running Windows 2000/XP/2003/Vista/2008/7 operating systems. It cleans up the following from the current user and other users (profiles) residing on the computer. A new product specifically for Terminal servers, Profile Cleaner TSE, adds the functionality of deleting profiles on the server.
Cleans :
-Recycle Bin (all users)
-Temporary Files (all users)
-Temporary Internet Files (all users)
-Memory Dump files (all users)
-Microsoft® Outlook® temporary files (all users)
-Printer Spooler files (all users)
-Recent Documents,Run History, Mapped Drive Letter list (current user only)";
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 = '';
}
}