var fDesc=new Array();
fDesc[1] = "photos with friends and family is as easy as pressing a button!";
fDesc[2] = "digital cameras, but the application can be used by anyone. Version 7.1 adds several new features. The first one is the ability to tag pictures. By tagging a picture, you give it a keyword, which you can later use to find pictures.";
fDesc[3] = "those who just want to remove those annoying red eyes and correct some basic exposure mistakes, to those who enjoy adding some creativity to their favorite photographs.";
fDesc[6] = "clicks, and then organize them indigital photo albums. Best of all, you can go directly from the program to Acti...";
fDesc[7] = "includes Kodak, Cokin and Hoya filters, in several colors, giving you the possibility to apply more than 100 filter types to your photos, preview the results and approve or discard the changes you´ve made.";
fDesc[8] = ", retouch, photo album and compression tool.";
fDesc[9] = "critical information such as business data, project details, etc., due to accidental deletion and in all such cases, MediaRECOVER comes to the rescue of the user, which is essentially a complete digital image and file recovery utility package.";
fDesc[10] = "not all this program does. Using this application you will be able to edit your image files with a lot of effects such as mirror, various filters, rotate, flip, watermarks, color enhancements, margins, crop and more.";
fDesc[11] = "mainly to make printing jobs easy, it includes a number of basic but useful editing functions that will enhance your digital photos in seconds. It will also import your videos and create screenshots that you can later edit and print just like any other image in your library.";
fDesc[12] = "It supports well over 30 different file formats for viewing and saving images, in multi-page formats like TIFF and PDF, and also supports conversion of images into other format.";
fDesc[13] = "speed and it also helps to review and tag high resolution images quickly. Moreover you can open multiple images with view scale ranging from 10 to 200% on window";
fDesc[14] = "the digital images. The software emulates professional level photography reversal film and you can print and work with all of your digital pictures. You will have the same effects as you would with reversal films like Fujifilm Velvia (RVP) or Kodak T-Max100.";
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 = '...';
}
}