var fDesc=new Array();
fDesc[0] = "Similar Image Finder is an application that will find and remove duplicate images on your PC even if they are not exactly the same.
Main Features:
- You have a large amount of image files and limited storage.
- You are photographer and you take more than one shot of a view.
- You can search for similar images in multiple folders.
- You can specify if the search will include sub-folders or not.";
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 = '';
}
}