var fDesc=new Array();
fDesc[0] = "Image Cropper is an application designed to easily crop a batch of images to a specific aspect ratio.
Main Features:
- Easily maintain a specific aspect ratio.
- Resize if necessary with high quality.
- Create anamorphic images for widescreen TV.
- Crop for printing or publishing or the web in landscape or portrait.
- Reduce the size and resolution for Digital Photo Frames.
- Comprehensive file naming and batch rename utility.";
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 = '';
}
}