var fDesc=new Array();
fDesc[1] = "supports mpeg2 (that is, Quick time is now compatible with .mpg, .mpeg, .vob, .vro, .m2v, .m2a, .m2s). It is also compatible with a variety of audio formats like AIFF, WAV, MOV, MP4 (AAC only), CAF and AAC/ADTS. QuickTime also opens images in jpeg format and other image formats.";
fDesc[2] = "user of compact cameras, ACDSee taking a more professional version for the advanced user. For the price it has is an interesting option for the purchase by the amateur .";
fDesc[3] = "is available for direct downloading and is available in several languages. It is a program to make photo printing very easy and quick. It supports TIFF,JPEG,PIC,BMP and RAW images.";
fDesc[4] = "create, design, restore, or retouch images, plus many other actions that are usually carried out by important image editors. Paint.NET works faster compared to other image editors, being very powerful and easy to use at the same time.";
fDesc[5] = "files in over 400 file formats (GIF, BMP, PNG, JPG, JPEG, TIFF, PCX, ICO, IMG, PDF, PIC, PSD, RAW, RGB, TGA, and many more).";
fDesc[6] = "for direct download from the developer’s website. When installing, we can associate the following file extensions: TIF, TIFF, DjV, DjVu, PDF, and TXT with STDU Viewer. It provides a free browser and viewer for these files.";
fDesc[7] = "ViewNX. Designed for easy integration with Nikon Transfer and Capture NX software. Convert RAW NEF and RAW NRW files to JPEG and TIFF format with ease. You can even adjust white balance, exposure compensation, Picture Controls and much more.";
fDesc[8] = "the program is really fast and easy to use. From the screenshot itself, you can see that only some picture formats like the JPG, JPEG, GIF, TIFF, PNG and a PDF is only available.";
fDesc[9] = "easy tools like, resizing tools, crop tools, color adjustment, brightness and contrast settings. Firegraphic also offers quick view of any video file.";
fDesc[10] = "dozens of image formats, such as TIF, JPG, GIF, PNG, BMP, PSD, WMF, EMF, PDF, PCX, PIC,etc. into PDF format. This incredible program can also be run from the command line allowing for use of batch files as well as launching programmatically from other programs";
fDesc[11] = "damaged image files. This incredible application restores the corrupted image file and saves it as Windows Bitmap, keeping the original dimensions and color depth.";
fDesc[12] = "PDF document and save them as high-quality TIFF files. Colour images can also be saved as JPEG if preferred. In both cases, the compression ratio is optimized for high quality results. The resulting images can be saved in independent files or in a multi-page TIFF file.";
fDesc[13] = "different file formats including Microsoft office word (.doc, .docx. docm), excel (.xls, .xlsm, xlsx), powerpoint (.ppt, .pptx, .pptm), pdf, htm, html, rtf, txt to image format. Conversion doesn’t take a lot of time.";
fDesc[14] = "into PDF all at once without losing any quality during the process. The program is able to convert TIFF files (black, white or color) into PDF files with a high quality level.";
fDesc[15] = "The program has got a really friendly interface that will guide all users on how to convert one file from one into another in a simple way.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}