var fDesc=new Array();
fDesc[0] = "FlickFleck will enable you to transfer jpg photos from your digicam memory card. These files will be renamed and lossless rotated according to the EXIF information.
Main features:
-Connect camera to computer
-Transfer files to a directory
-Rotate pictures by EXIF orientation information (saved by the camera)
-Rename pictures by EXIF creation date.
-Sort pictures to subfolders by 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 = '';
}
}