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] = "being the AC mode and the other being DC Mode (battery mode). Using this management software, you can choose among the many power profiles (Entertainment, Presentation, Word Processing, and Battery Life.) and set your laptop to last or extinguish the battery juices.";
fDesc[3] = "computers, and allows maintaining maximum productivity and saving maximum of electric power. This utility adds the possibility to switch off some components for power saving in that way.";
fDesc[4] = "and features that can get your raw photos ready to the publishing or sharing. You can use special effects, denoise and red eye effect removal tools to enhance your camera pictures. Photo! Editor supports all the popular image formats, like JPG, BMP, PNG, GIF and TIFF.";
fDesc[5] = "(e.g. red eye) or get creative. Use for web, email, or print. Photoshop plugins, animation, and much more. FREE. Registration required.";
fDesc[6] = "our favorite software’s to proceed with video calls, take pictures, create our own videos. The program provides options to configure the saturation, brightness, contrast, gamma and others.";
fDesc[7] = "this application. Many special effects, panorama and screensaver creation, rotate, flip, scale, etc. will fit most of one's picture editing needs. Perspective effects, object handling and collages, screenshots creation, picture cropping, etc.";
fDesc[8] = "formats. With the set of enhancement tools, you can choose, view, edit, save, export and convert RAW images to PNG files.";
fDesc[9] = "photos and other images. This incredible program enables you to crop, rotate and resize and also add effects like sepia tones, red eye reduction, grayscale as well as the ability to change the hue, saturation and brightness levels, and a lot more.";
fDesc[10] = "options covers almost anything your need to correct and enhance your photographs – from removing colour stains or red eyes, to correcting the exposure, white balance or brightness, this software is useful for all kinds of users.";
fDesc[11] = "you store in your computer and camera. The found photos will be organized in folders, and the program will display each folder with an image that identifies it.";
fDesc[12] = "buttons of your monitor, and this is not always an easy task. But what if you could control these settings just by pressing hotkeys, or changing them manually by means of a small program? That's exactly what Display Tuner will let you do.";
fDesc[13] = "device. Desktop Lighter allows you to tune the brightness of your screen easily and quickly. It can change the brightness level by application window trackbar or by keyboard command hotkeys. So you can work with office documents, browse internet pages, watch a movie, or play a game and it is a good idea to set the proper brightness value before. You might use the monitor control buttons or the settings of your video driver to do it. But you could well do it with this program. Keep your eyes in optimum condition and have a good time.";
fDesc[14] = "the brightness and darkness and sticking out images that need some particular visualization. Each color has its own sliding bar. Presets can be edited and saved.";
fDesc[15] = "advanced and precise way than using the monitor's built-in menu. It has a simple and friendly graphical interface that guides you step by step to make many adjustments to your screen. It's compatible with Windows 2000/2003/XP and works in both CDT and LCD monitors";
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 = '...';
}
}