var fDesc=new Array();
fDesc[0] = "Duplicate Picture Finder is optimised to run on Intel Atom powered netbooks, and it also runs great on any Windows PC.
Features:
- Find all copies of the same photo in your digital photo collection.
- Select which copies of the pictures you would like to keep and remove.
- Delete or isolate the duplicates to another location on your computer.";
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 = '';
}
}