var fDesc=new Array();
fDesc[0] = "This utility will help you cut your photo images made by a digital photocam. The proportions of digital photos does not match the proportions of standard photo paper.
This program will make optimal crop operation on your images in a single click or copy operation if no cut operation is possible. Easy interface helps to process up to 10-15 photos in a minute. You can process whole folder with your digital photo collection during a single session.
Red-Eye reduction, contrast, brightness management is included.";
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 = '';
}
}