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] = "picture quality even at high compression ratios. Xvid is similar to DivX, since it is an open source project, distributed under the terms of the GNU General Public License (GPL). That means that it´s free to use, and everyone can contribute to its development.";
fDesc[5] = "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[6] = "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[7] = "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[8] = "means. This software will organize all the pictures on the computer and mobile phone (cellular) for viewing, editing, sharing and search purposes. You can move pictures from and to PC and mobile phone (both ways) and make changes to the images that will be kept in a safe place.";
fDesc[9] = "Share your movies all over, on iPods, YouTube, or the new HD home theater systems, with full support for discs as AVCHD, Blu-ray and HD DVD.";
fDesc[10] = "Eos Utility CD package after purchasing a Canon Digital Camera. This piece of software has been designed to allow us to create units with both image and audio and save them as a single item. We can access this program via Start, Canon Utilities, Camera Window, MyCamera.";
fDesc[11] = "photos, specially for making birthday card, get well card, congratulation card, party card, greeting card, photo album and so on. PIF DESIGNER 2.2 does not provide with any frame at all.";
fDesc[12] = "creative projects. Take any picture you want and put it in a funny frame. You may also take a picture from your webcam; there is a quick access to this function in the program.";
fDesc[13] = "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[14] = "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[15] = "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[16] = "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[17] = "formated or corrupted from almost any memory card. With this powerful utility you will be able to recover images, videos, data and any other media stored in any of the supported memory cards.";
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 = '...';
}
}