var fDesc=new Array(); fDesc[0] = "This app is an easy-to-use program that helps you detect duplicate files on your machine, external hard drives, CDs, DVDs, USB sticks, and camera cards.

Since each user defines duplicate files differently concerning file name, file size, attributes, last modification time and so on you can determine by yourself what the program should look for. It is also possible to compare unique CRC32 checksums of each file.

After the selection of any path or drive you like, the program checks all files in all folders and subfolders and compares them with each other, so definitely no duplicate file will be forgotten.

When the search is done, you will see a list where the found duplicate files are categorized concerning their file size to make it even easier. Now you can select any of it and decide if you like to execute it, to delete it or to take a view to the folder where this file is located."; 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 = ''; } }