var fDesc=new Array();
fDesc[1] = "files. You can group files by name, size, checksum, and/or digest. And use seven different methods of deleting to clean up quickly.";
fDesc[2] = "name, size, checksum, digest as well as three additonal methods. And use seven different methods of deleting to clean up quickly.";
fDesc[3] = ", digest as well as three additonal methods. And use seven different methods of deleting to clean up quickly.";
fDesc[4] = "zsDuplicateHunter Professional. With the Enterprise Edition you can replace files with links and use scripting to automate zsDuplicateHunter.";
fDesc[5] = "even compare files within zip files. Includes zsDuplicateHunter a powerful duplicate file finder for free!";
fDesc[6] = "help you to eliminate the duplicate files that clutter your hard drive and slow your computer down.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}