var fDesc=new Array();
fDesc[0] = "Lost your disk space? Do you not know what are using your hard disk?
Do you need a help to clean your computer? Try Drive Space Scan: it's been designed to help you to find your lost space under all the directories tree of your disk.
With it you can easy navigate throw the disk tree and view a graphics pie report, the percentage bars and the space sum. It has also a convenient menu that help you to view, explore, delete or destroy the directories.
It works wich any type of logic disk.";
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 = '';
}
}