var fDesc=new Array();
fDesc[1] = "Real player is a free multimedia player,supports almost every audio and video file formats like,MP3,MPEG,MP4,CD,D VD VIDEOS and the QUICK TIME videos.Real player enables the user to buy and download music on more than 100 portable devices like Apple Ipod or an MP3 player.";
fDesc[2] = "photos with friends and family is as easy as pressing a button!";
fDesc[3] = "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[4] = "file converter and a picture file converter. I am used to seeing at best, converters that work with video and audio, but the addition of picture files makes this one a great application to have.";
fDesc[5] = "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[6] = "Viewer version 1.0, to Picture Motion Browser version 4.2.10.";
fDesc[7] = "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[8] = "demanding photographer. Both versions of the software use the same database engine to catalog your image library, but the PRO version adds extra options for selecting from big photo shoots and the ability to process raw image files non-destructively.";
fDesc[9] = "resolution and picture adjustments. Tray Icon enables user to launch the application and set it to mini-mode. Picture Slideshows can be created using the Stitch-Video feature.";
fDesc[10] = "used as background to create funny and interesting images. What is more, the program includes hundreds of masks to choose from, various clip arts, funny and sweet cartoon figures, frames, outlines and the possibility to include text to make your photos even more attractive and interesting.";
fDesc[11] = ", use and manage picture information, archive, print, make CD or 3D pictures.";
fDesc[12] = "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[13] = "a good looking interface so you can work fast and easy. You can also create greeting cards, post cards, and thank you notes. This program run with Microsoft Windows.";
fDesc[14] = "one process, use image watermarking options, rotate and auto rotate images without compromising in quality, use canvas resize feature, rename image files in batch mode so on.";
fDesc[15] = "acquire images from a digital camera or scanner, quickly improve, organize and catalogue photos, create greeting cards, fliers, and Web graphics, create presentations. Picture Studio Online will let you share pictures online directly from Image Expert.";
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 = '...';
}
}