var fDesc=new Array();
fDesc[0] = "How many photos does your collection contain? Several hundreds or thousands?
There is a program for you to sort your photos automatically by date.
You need only 3 clicks to do this if you use Easy Photo Sorter.
1. Select a folder with your photos
2. Select one among 12 possible ways of sorting and one among plenty ways of renaming
3. Select a folder for your collection to be copied and removed
Easy Photo Sorter keeps folders in chronological order and sorts in them your photos or graphical images.
Your collection will become larger and larger but it'll be always in order due to Easy Photo Sorter.";
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 = '';
}
}