var fDesc=new Array();
fDesc[1] = "of a few different soldiers fighting for different Allied factions during World War II. Each of the game's 10 missions is split into different stages. The game's graphics are particularly great, specially the smoke effects from smoke grenades and explosions, and sound is nothing less than superb.";
fDesc[2] = "the galaxy by this. Is a game in which one can lengthen the line-up wherever you want whenever you begin a life of the universe is completely new and very large.";
fDesc[3] = "beginning, but as you keep on advancing you will notice that the difficulty will increase. The game has great graphics, nice music and sound effects and is very funny and entertaining.";
fDesc[4] = "Entertainment, produced by 3D Realms and published by Gathering of Developers The development of the gameplay is through levels or stages, with cinematic sequences interruptions in which the player does not intervene and just watches the action.";
fDesc[5] = "rallying game. The Xtreme version also brings road going cars and some other off road vehicles. With over 40 tracks available, the repetitive value of the game is huge. This is a great addition to any racing fan collection.";
fDesc[6] = "order to help you. Solve all the puzzles that will be presented to you at the different stages of each temple. Enjoy hours of fun solving puzzles in this great game.";
fDesc[7] = "have written on a list in order to unlock new stages, get as much clues as you can so you can solve the mystery. This game will really challenge your observation skills.";
fDesc[8] = "to catch enemies inside. After that you should jump on bubble with an enemy trapped inside and pop them!";
fDesc[9] = "to reach the end of the stages. To do this you must drive Stinky and loof through the 3D alleys and move boxes, dodge fireballs and much more to reach the goal.";
fDesc[10] = "farm grow as you invest the money you earn on each activity and bonus stages. Enjoy this fun puzzle game where you will be doing farm tasks.";
fDesc[11] = "a world renowned collector of rare and unique items. His collection is almost complete, he just needs to find eight more items, to finish his life's work. Unfortunately he can't travel around the world as he used to do in the past. That's why he offers you to help him.";
fDesc[12] = "This game and adventure brings you different games, each time you finish a location the game will challenge you with a swapping puzzle. Challenge your speed and ability with a timed mode and try to finish your task before the time ends.";
fDesc[13] = "between two images, search objects in darkness and solve musical clues. Improve your characters look, so she can do much better in the fashion industry.";
fDesc[14] = "enormous group of colorful monsters from getting to your house. You will have to shoot monsters of the same color and get three or more so that you eliminate them and stop the attack.";
fDesc[15] = "fun and challenging stages you must finish to arrive to end of the game. Features awesome great graphics and music and amazing cool special effects sure to appeal to everyone in the family.";
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 = '...';
}
}