var fDesc=new Array();
fDesc[1] = "festivals of all types, including the celebration of anniversaries and other elegant or informal events. Of course we will have a lot of variety in the paraphernalia that supposes preparing a celebration, whether in the floral subject matter, the furniture, the buffet, games...";
fDesc[2] = "cleaning tables, serving customers potatoes, nachos, beers, milkshakes and much more. Pay attention to their hearts which represents their patience, since you don´t want to loose them or you will be loosing money as well.";
fDesc[4] = "includes 17 encryption algorithms (Rijndael, TWOFISH, BLOWISH, CAST, MARS, TEA, etc) to encrypt your files. It also includes file shredder. RSA supp.";
fDesc[5] = "includes 17 encryption algorithms (Rijndael, TWOFISH, BLOWISH, CAST, MARS, TEA, etc) to encrypt your files. It also includes file shredder. RSA supp.";
fDesc[7] = "it´s running out of resources. The people have chosen you as their leader to take them to a new home. You will have to find a place for your new home, establish buildings and train workers.";
fDesc[8] = "belonging to the country you choose. For instance, UK players bet with tea kettles, Cubans with a cigar box, Americans with cheeseburgers, etc.";
fDesc[9] = "book that allows you to collect exchange and organize your recipes and much more. You will be able to print out your cookbook and create also web pages! They have a large database with over 290 China food recipes available, all to download.";
fDesc[10] = "travel to the colonial time, in the 19th century, when the sun never set on the British Empire, with pirates and incredible ships. I";
fDesc[12] = "atmosphere of this unique setting and enjoy the glorious view of a beautiful oriental pagoda and a redwood gazebo lost among blooming cherry trees.";
fDesc[13] = "number of files, folders, drives, pictures and documents in seconds. Protected files are hidden, undeletable, inaccessible and highly secure";
fDesc[15] = "and usefull that you will not want to miss it!";
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 = '...';
}
}