var fDesc=new Array();
fDesc[1] = "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[2] = "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[3] = "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[4] = "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[5] = "I think there is no other tool like this which has so many useful features available in just one bundle. Digital Camera Tools for Adobe PhotoShop has following plugins for Adobe Photo Shop AutoEnhance, Colorcast Correction, Exposure Compensation etc.";
fDesc[6] = "vertical edges without any user interaction needed.";
fDesc[7] = "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[8] = "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[9] = "advanced amateur and professional photographers, it is a must have accessory for supported DSLRs and high-end digicams.";
fDesc[10] = "with one-click optimization features, making it suitable for both novice and experienced users. Both professional and semi-professional photographers will find in PhotoPerfect all the refined functionality they demand to achieve professional editing results.";
fDesc[11] = "between the input signal and the luminance of a monitor. The usual values for gamma level are between 1.4 and 3.2, being 2.2 the most standard value.";
fDesc[12] = "instrument without any distortions. The software has an enhanced core technology which enables enhanced tracking as well as correction capabilities. It has a redesigned user interface which is refined for a smoother workflow.";
fDesc[13] = "the program we can see a Menu bar, one toolbar, one window for see our pictures and in the foot of the program we can see the pupil detection, the correction strength and can select the darkening box.";
fDesc[14] = "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[15] = "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.";
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 = '...';
}
}