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] = "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[3] = "HP device. It is now available for online downloading. It is primarily aimed at printing, it supports JPG, JPEG, BMP, PNG y GIF images. It allows us to import our photos from a memory card, printer, camera, PC, CD, scanner, etc.";
fDesc[4] = ", comparison, red-eye removal, emailing, resizing, cropping and color adjustments. It supports all kind of images format and also includes new tools for drawing on the imagery, fixes, optimization.";
fDesc[5] = "after purchasing a Canon Digital. First of all we have to take photo with our camera opting for the RAW format instead of the JPEG or use both for comparison. By using this tool, after transferring the photographs to the computer, we can manage them in various ways.";
fDesc[6] = "camera, supporting added for Vista ServicePack 1 (SP1). It can manage and edit JPEG,RAW and TIFF image file formats.";
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] = "from the Web, e-mail photos quickly and not exceeding e-mail size limitations, resize images and make thumbnails.";
fDesc[9] = "many uses for an application like this. The first one that comes to mind is to decrease the size of your JPEG file by means of downsampling its quality.";
fDesc[10] = "frame, a border around the image and a drop shadow for a 3D effect. When you´re satisfied with the result, you can save the picture in .BMP, .JPG or .PNG format. The program allows you to preserve the EXIF information present in the original image.";
fDesc[11] = "menu bar, one toolbar, two windows and in the foot of the program we can see an advanced box, a filter strenghtt and two buttons more.";
fDesc[12] = "The software supports the following image formats: JPG, JPEG, PNG, GIF, and BMP. JPEG to PDF is only 578KB, does not take up much PC/memory resources and is absolutely free.";
fDesc[13] = "software will help you to correct this. The program came in 2 versions the Basic and the Pro version. This software is only supported in Windows operating systems.";
fDesc[14] = "many exciting features like RoundRect Box, FPS rate change provision, incorporating Size Change, and the ability to crop as well as remove frames. It comes with the capability to even capture next 5 frames, and supports animation GIF, WMV, ASF, MPEG, and the AVI file formats.";
fDesc[15] = "ones recorded with DigiCam, WebCam, NetCam, and more video sources. It can also playback hardware M-JPEG AVI files, like those produced by Rainbow Runner, DC10, DC20, DC30 or Buz, without requiring the specific hardware codec.";
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 = '...';
}
}