var fDesc=new Array();
fDesc[0] = "Acute Batch Image Processor Lite helps you batch convert and resize image files.
Main features:
- Convert between image formats.
- Convert from jpeg, gif, png, psd, tiff, bmp, pcd.
- Convert to jpeg, gif, png, tiff, bmp.
- Select compression level, quality and other output options.
- Recompress image files to make them smaller.
- Resize, flip and rotate photos and images.
- Drag and drop support.
- Just drop files or folders onto the ABIP window to convert.
- Automatically searches for selected image file types.";
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 = '';
}
}