var fDesc=new Array();
fDesc[0] = "A decent little tool that has the potential to clean quite a bit from your system, and can even automatically compress little-used files to make them occupy less disk space. It offers you an expanded selection of cleanup and optimization choices.
Main Features:
- Temporary Setup Files
- Downloaded Program Files
- Temporary Internet Files
- Debug Dump Files
- Office Setup Files
- Old Chkdsk Files
- Recycle Bin
- Temporary Remote Desktop Files
- Setup Log Files
- Temporary Files by Windows applications
- WebClient Temporary Files
- Catalog files for content Indexer";
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 = '';
}
}