var fDesc=new Array();
fDesc[1] = "unlock clues needed to escape from a secret island! You’re stranded on a secret island, and there’s only one way off! Find hundreds of hidden objects underwater and on land that will help you match cards and unlock clues needed to find your way home!";
fDesc[2] = "keep advancing from level to level. You will play at different stages, each stage is a different country. The game has got a nice storyline. You will be able to read the story from a book that will let you know what has happened and what will happen with the characters of the game.";
fDesc[3] = "land of Iris. The mortals fight for the power and conquest of the land where the ambitions make the players change their alliances all the time with the consequent betrayals. Every decision is important.";
fDesc[4] = "off for fun with Airport Mania! Land planes, unload, and return to the skies in 8 amusing airports. Avoid delays, keep your planes in good repair, and get to the gate on time to keep things running smoothly.";
fDesc[5] = "beautiful crystals, you'll find it hard to stop playing, attaching crystals to each other and making them disappear.";
fDesc[6] = "fourth episode in the SimCity series and originally was released on 2003. It has a single expansion pack known as Rush Hour which adds additional features to the game. But the Deluxe Edition contains the original game and Rush Hour combined as a single product.";
fDesc[7] = "lovely creatures called Daggles. With a captivating plot and wonderful graphics, this game really deserves a place in your game collection.";
fDesc[8] = "Digs and Marine Mania for the players imagination to fly free while they are taking caring for more than 100 land, seas and extinct creatures in the most amazing and realistic possible way.";
fDesc[9] = "travelling? Now you can be part of the first voyage of those brave seamen with the Voyage of Columbus 3D Screensaver! Get aboard one of Columbus' ships: the Santa Maria, the Pinta and the Nina - and recreate the making of American history!";
fDesc[10] = "game features colorful graphics with funny characters (Dora and her friends Boots, Backpack and Diego from the popular program Dora the Explorer), and great music and sound effects.";
fDesc[11] = "different activities. This game will challenge your ability to care of different things at the same time. Graphics are excellent and moves are very well done in Farm Craft.";
fDesc[12] = "isn't, as lots of runes are in our way. We must remove the runes by creating matches of three or more similar runes. To do so, we must pick a rune and drag it to the desired position. If we move a rune without making a match new runes will appear in the game board.";
fDesc[13] = "by 3 or 4 players. Each player has the goal of get as many resources as he can and conquer as much land as he can. Obviously, the resources and land have to be “shared” by all participants so there is where the strategic skills and, eventually, the war skills show up.";
fDesc[14] = "is a group of soldiers specialized in combating terrorism. The software allows you to engage the enemy in expansive indoor and vast outdoor environments as you command a team of especially skilled soldiers.";
fDesc[15] = "You will visit a small, picturesque village in a forest, where you will really feel the Christmas spirit all around you.3D Christmas Land Screensaver will take you to Santa’s home.";
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 = '...';
}
}