var fDesc=new Array();
fDesc[1] = "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[2] = "desktop look better and improve the usability, making easier to recognize items. You can share your icons with others, and use other people´s creations. It has many themes included.";
fDesc[3] = "incredible program allows you to save the created music or a part of the mix project with such popular audio formats as MP3, WMA, WAV and others.";
fDesc[4] = "of software. Thanks to its intuitive and perfectly designed interface users can take full advantage of all its features.";
fDesc[5] = "digital pictures and text. The interface is remarkably user-friendly, and it offers easy access to complex tasks with great simplification.";
fDesc[6] = "combines the best ingredients of the third person shooters genre: accelerated races, destructive environments and deadly weapons. The story is based on a series of fighting games, where players can choose between eight gladiators.";
fDesc[7] = "professional photo calendars including your own pictures. The program is included in the pack Print Creations, and includes many free and purchasable calendars to choose from. Free calendars are really beautiful and for different tastes, and the purchasable are not very expensive.";
fDesc[8] = "user can chose between dozens of professionally-designe d templates and models. It is also possible to create photo calendars, photo albums, books and much more.";
fDesc[9] = "to be mailed to both your friends and family. This program provides you with dozens of pre-designed slimline card templates and a number of tools for adding your own photos and text.";
fDesc[10] = "fascinanting stories celebrating special events and memories such as a wedding, a birthday party, and others. Also this software includes many great print features to help you get perfect results every time.";
fDesc[11] = "many themes included and much more available for download. The easy to use interface also lets you insert personalized fun captions, quotes and titles, doing it all with just a few clicks.";
fDesc[12] = "any format you want to run. This program is really complete for the creations of DVD’s, it have multiple functions and a multiple language support.";
fDesc[13] = "layout (Artistic, Classic, Occasions, Holidays, Just for Girls and much more), and then add your personal selected photos and a suitable text.";
fDesc[14] = "can be printed using only a sheet of paper. Photo IDs can be done, and there are image quality editing tools. Standard print sizes available as well. Projects can be saved on to a computer or sent by e-mail.";
fDesc[15] = "creations in even more detail. Anyone interested in developing their own commercial quality games will benefit from trying the Torque Game Engine Demo 1.5 which provides you with everything you need to get started.";
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 = '...';
}
}