var fDesc=new Array();
fDesc[0] = "This tool from ElmueSoft works on a folder (and its subfolders) on your disk:
- set the attributes of all files and folders. (Read-only, Hidden, Archive, System)
- change the date of all files and folders.
- create a list as text file of all files and folders.
- calculate the MD5 signature of all files.
- list binary and text version of all EXE and DLL files.
- search for duplicate (triple...) files.
- also via network.
Changing the date of all files in a folder is very useful for archiving purposes: If you set all the dates of your MP3 files e.g. to the 1.1.2000 00:00 you will recognize the files, which where added since the last backup by their different date.";
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 = '';
}
}