var fDesc=new Array();
fDesc[1] = "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[2] = "photos (pictures) to email, send to mobile phone, create calendars, slide shows, greeting cards, print pictures or output files, etc. from images captured by camera, scanner, or whatever digital mean, or from existing pictures on the Hard Disk or other removable memory media.";
fDesc[3] = "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[4] = "arrange, list and classify all your Mp3 files stored in your PC. That's why Zortam Mp3 Media Studio has many built-in features like: Search Media, Mp3 Tagging, Autotag, Cd ripper, Wav/Mp3 Converter, etc.";
fDesc[5] = "program will search for phrases or names in different search engines, such as Google, Altavista, Picsearch, Ask Jeeves and more.";
fDesc[6] = "interesting pictures and ignore the others. Organize pictures with tags. Shows unseen pictures Features for CD-ROM's: identify seen CD's, scan";
fDesc[7] = "and prints of selected photos. View EXIF metadata. Supports RAW formats for more than 100 cameras.";
fDesc[8] = "that can be easily sent and received over the internet. You can find, display, edit, print, and send multiple pictures. Create Picture Packages that can be condensed into a Zip File and sent to multiple E-Mail Addresses or exchanged by RW CD Rom, Zip, and Jazz Disks.";
fDesc[9] = "information. You can start quickly with ready-to-use templates or your can set up and use multimedia organizers that you create.";
fDesc[10] = "system for naming pictures and picture folders. Prograce Photo Sorter helps you to organize your photo folders based on EXIF info";
fDesc[11] = "computer effects.";
fDesc[13] = "pictures and compressed packages of pictures by e-mail over the internet. Pictures are organized by albums and grouped by packages for sending and recei...";
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 = '...';
}
}