var fDesc=new Array();
fDesc[1] = "photos with friends and family is as easy as pressing a button!";
fDesc[2] = "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[3] = "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[4] = "features to provide powerful digital editing performance without any problem. Pictures can be copied from camera and other storage devices and can be captured from live videos and from video files.";
fDesc[5] = "digital image. Is a powerful product, yet easy to use. It includes the basic functions needed for a beginner and the more complex functions used by pros.";
fDesc[6] = "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[7] = "simple way. It includes all the common tools including Hue/Sat/Luma, Cloning, Sharpening, etc. and plenty professional tools like Barrel-Pincushion, Chromatic Aberration, Perspective Correction, to name but a few.";
fDesc[8] = "the web, paint with the mouse, etc. You can acquire digital photos from file on your computer, with the help of a scanner or a digital camera and at once start to work with them.";
fDesc[9] = "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[10] = "operation, Current window selection list and more. Screen Grab Pro copies a bitmap to clipboard ready for pasting.";
fDesc[12] = "window selection list and more. Screen Grab Pro copies a bitmap to clipboard ready for pasting.";
fDesc[13] = "files on your computer. File Manager includes: CD-DVD Writer, File Viewer, Zip Archiver, Picture Viewer, File Renamer, Folder Synchronizer and other.";
fDesc[14] = "smart load feature: detect the first bitmap size and adjusts display size accordingly. You can edit icons and bitmaps using your favourite picture editor and invoke it directly from IconView.";
fDesc[18] = "the screen for a documentation about a website or a software program, for example.";
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 = '...';
}
}