var fDesc=new Array();
fDesc[1] = "funny stuff. Plot: The third delivery of this saga comes back with an old subject: the time travel. In this case is used by the soviets to eliminate a scientist, Einstein and his developments which will be vital for the Allies.";
fDesc[2] = "seeker who travels around the world, searching for lost treasures. In this game, you have to locate the Lost Tomb of Egypt, by finding and picking objects from different scenes. You can try this game for 60 minutes before buying.";
fDesc[3] = "instance, if you shoot a ball down a pocket with the Dommelsch logo, you will receive one of three kinds of jokers. These let you sabotage your opponent's balls in three different ways. For example you can make one of your opponent's ball stick firmly to the table.";
fDesc[4] = "from your PC, playing against other skilled players around the world. That's exactly what Carom 3D let's you to do. You can play pool with a total control of your movements, and a great 3D perspective, so you will be able to rotate, zoom and move the camera as you desire.";
fDesc[5] = "player is invited to quest for the long-lost weapons and armor of a divine crusader. After not a long time, the player finds the ruined sanctuary of the Knights of the Nine, an order of knights who met with an unfortunate fate.";
fDesc[6] = "great nonetheless. In the game, you play a new character, who apparently was on the same flight as the survivors, but he can't remember anything prior to the crash. Jack asserts that he has amnesia brought on by the shock of the crash.";
fDesc[7] = "by BigFish Games. You will have to find some hidden objects, some of them are very well hidden. Another thing that you will find are puzzles that you must solve to move to a next level or to have more clues.";
fDesc[8] = "just the same title a year ago, but with a series of expansions and is shipped at a reduced price, so it's a good opportunity for those who are lost in time.";
fDesc[9] = "This gives you an idea of the quality of the game which, on the other hand, it’s a disadvantage when you consider the large file you have to download to play it.";
fDesc[10] = "explore with the help of maps and teach the children how to perform different tasks while you buy different technologies in order to help them.";
fDesc[11] = "team in charge of exploring deep into the islands where few have been before. As in any hidden object game, your goal is to find all the objects on a given list before the time runs out.";
fDesc[12] = "of the game is easily inferred from the title. You form a part of a squad that gets lost from the main brigade. You are a squad of three that is constantly ambushed by Vietnamese forces.";
fDesc[13] = "is that once you finish the game, there is no additional value in it besides the multiplayer options. Fortunately capcom listened us and re-released a more challenging and content rich version, called Lost Planet Colonies Edition.";
fDesc[14] = "a passage that an archaeologist found under a tomb, with different doors and rooms. You must help to find the way to enter the different rooms and collect the treasures.";
fDesc[15] = "Triangle. Now she is doing a research about her relative and the mysterious place itself. The gameplay is very simple: you are presented with a list of objects to find in a messy place - and you have to spot them all clicking on each discovered one.";
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 = '...';
}
}