var fDesc=new Array();
fDesc[1] = "automatic), precision adjustments of contrast, luminosity (brightness), color saturation, etc. as well as gamma correction on pictures too dark or too bright. Selection of several shapes: rectangle, ellipse, rhombus, triangle, polygons, etc.";
fDesc[2] = "provides color management engine which features ICC profiles and other functions like white balancing, contrast, sharpness, saturation, lens correction, image perspective and trimming, outputting and printing.";
fDesc[3] = "Aperture and Capture NX 2. It is a full-featured editor that allows you to enhance your digital photos, correct colors, retouch, apply various effects and many others.";
fDesc[4] = "draw your own works of art. You can acquire digital photos from file on your computer or directly from a scanner and at once start to work with them.";
fDesc[5] = "integrated DVD authoring, surround sound, audio processing, and 1000’s of other powerful real time effects. Avid Liquid provides the necessary tools which allow the user to create high quality productions";
fDesc[6] = "effects to your photos. Within the application you will find a wide set of useful effects like: Rotate to left or right, fix red eye, enhanced color, denoise, deblur, make up, lighting, straighten, resample and crop.";
fDesc[7] = "PhotoTune 2.2 incorporates ColorTune technology with its patented color correction process and SkinTune technology, developed after more than two years of in-depth skin color research.";
fDesc[8] = "advanced amateur and professional photographers, it is a must have accessory for supported DSLRs and high-end digicams.";
fDesc[9] = "required because the whole process is of the simplest kind, allowing even an inexperienced user to improve the color of his/her photos. It is possible to add images with the following formats: BMP/JPG/TIF/PNG/PSD/PC X anywhere within our computer, removable, or external compatible TWAIN devices.";
fDesc[10] = "as a standalone program as well as a plug-in for your favorite photo editor. It can automatically change the appearance of underexposed, overexposed and mid-tone areas of a photo without touching the exposure settings.";
fDesc[11] = "program we can see two windows in the left and two windows in the right. In the first window we can see our folders and in the window below we can see the images that every folder has.";
fDesc[12] = "you install Video Pilot, just run an example from the Examples menu.";
fDesc[13] = "program offers four editing options: manual edit, paint, wizard, and a batch converter. In the manual edit option you can adjust filter parameters manually, that means that you select exactly the filter you are looking for. Note that the filters are limited and rather basic.";
fDesc[14] = "have hundreds or thousands of images. But luckily we found Batch AutoCorrector. With its help the process of quality improvement is just a kids game. As its name suggests, it is a batch auto corrector,";
fDesc[15] = "technology. Rotate, crop, resize, remove red-eye, and sharpen. CorrectPhoto is the perfect digital photo editor for Windows XP and Vista.";
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 = '...';
}
}