var fDesc=new Array();
fDesc[0] = "MasterSoft Multi Converter allows you to view, save and convert different graphic file formats like:
- Targa Image File (*.tga)
- Picture Exchange Image File (*.pcx)
- Windows Metafile (*.wmf)
- JPEG 2000 File (*.jp2)
- Japan Picture Format File (*.jpc)
- Binary Property Page File (*.pgx)
- Sun Raster Graphic File (*.ras)
- Portable Any Map Graphic Bitmap File (*.pnm;*.ppm;*.pgm)
- Bitmap (*.bmp)
- Graphics Interchange Format (*.gif)
- Joint Photographic Experts Group File (*.jpg; *.jpeg)
- Icon File (*.ico)
- Portable Network Graphics File (*.png)
- Tagged Image File Format (*.tif;*.tiff).
Also you can Batch conversion for all file formats with:
- Suffix for filenames
- Bits per pixel altering
- Scaling of all images based on a maximum side length factor (proportional scaling) and much more.";
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 = '';
}
}