var fDesc=new Array();
fDesc[1] = "photos with friends and family is as easy as pressing a button!";
fDesc[2] = "CorelDraw, the main application for vector design and layout; Corel Photo-Paint for image editing;Corel Capture, a screen-capture utility; ConceptShare, a collaboration service; and the Bitstream Font Navigator.";
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] = "PDF format to as the standard for giving downloadable information pages or printable forms. This software helps you do all the operations on a PDF file, like inseting password, converting images to text, compressing and reducing file sizes, etc.";
fDesc[5] = "easily. Office Visio is a powerful program to create professional-looking and very handy diagrams that enable you to communicate information to a broad audience at a glance.";
fDesc[6] = "professional audio production. Use Adobe Audition to: - Create your own music - Record and mix a project - Produce a radio spot - Clean up audio for a movie - Compile and edit a soundtrack Whatever you do with audio, Adobe Audition software helps you sound your best.";
fDesc[7] = "secure distribution and collaboration. With Acrobat Standard you can: * Combine and arrange documents * Manage shared reviews * Use familiar review and commenting tools * Save in Microsoft Word * Capture web pages * Sign documents digitally * Etc.";
fDesc[8] = "Sims. The sixth expansion pack for The Sims 2, which is called The Sims 2: Bon Voyage, presents a similar topic to develop. Vacation introduced a new neighborhood, called Vacation Island, where the Sims may take vacations with members of their own family or with other Sims";
fDesc[9] = "powerful application is a handy and very useful tool for professionals, students, English learners, etc., and includes more than 210.000 definitions, examples and pronunciations. This program will become an essential tool for those who need look up English words.";
fDesc[10] = "hairstyles included will show customers how the final result will be, with the capability of changing or varying the displayed look in order to get the closest approach to the desired customer style and/or color.";
fDesc[11] = "you can later author and burn to DVD or CD. Its Project Wizard will easily guide you through all the steps needed to create your MPEG files, while its flexible editing tools and settings will allow professionals to enhance, merge, split, de- and multiplex any MPEG file.";
fDesc[12] = "settings of any image. ReaCompressor can optimize your images for the best looks and quality for web use, emailing, storing or sharing. Support for TWAIN devices enables the user to directly acquire images from scanners and cameras.";
fDesc[13] = "professionals and novice users. This application has a wide range of design tools that will let you add all kinds of elements to your projects, see your objects from different angles and views, edit and apply all kinds of textures, etc.";
fDesc[14] = "an enormous flexibility. It helps linguistic professionals to keep and enhance consistency all along their work. This translation memory also allows handling formats such as HTML/ASP/JSP, SGML/XML and XSL through a TagEditor.";
fDesc[15] = "heating systems. The software assists its users a great deal by providing useful heating and cooling information in easily understandable format. This software is a must have for professionals such as architects, interior designers and contractors.";
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 = '...';
}
}