var fDesc=new Array();
fDesc[0] = "Windows Powertools has these features:
*Cache2Trash:Clear unwanted temporary files to gain space
*DiskCheck: Check for disk errors and resolve them
*FAT2NTFS:Convert your partitions to NTFS
*Kompressor:Compress Hard Drives
*ConvertIMG:Convert multiple images simultaneously at high speeds.
*Defrag:Analyze and Defragment hard drives
PLUS Easy access to 10 little known but powerful utilities.";
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 = '';
}
}