var fDesc=new Array();
fDesc[0] = "Compare Folders allows the user to compare the contents of two folders against each other. This can be done with or without extensions.
Main Features:
- Compare the files in a folder by their names and extensions, or just by their names
- Files that only occur in one folder get a check in their check boxes
- The checked files can be copied to the other folder
- The checked files can be deleted (To the recycling bin)";
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 = '';
}
}