var fDesc=new Array();
fDesc[1] = "changes is the ability to turn into a werewolf during game-play. The game is fun itself, but it is plagued by a lot of technical issues.";
fDesc[2] = "Gothic 3 put you in the foots of a hero without name, who has the ability to be a warrior, an archer or a wizard. Plot: The major character comes from the seas to the kingdoms of the continent, where the Orcs have invaded almost every human";
fDesc[3] = "the best space RTS ingredients. A long history, several factions, hundreds of weapons, strong multiplayer component and many ships and flying hours.";
fDesc[4] = "races of the world, the old conflicts between the different beings who inhabits the planet it began to emerge.The dwarves, the Shaikans, the dark forces and the humans ended with their alliances and went from love to hate over the years.";
fDesc[5] = "in a fantasy world, where you will control a character with his own characteristics for the fight. The goal is to defeat your enemies. Plot: The characters can be elves, humans, dwarves, mages, orcs and trolls.";
fDesc[6] = "imagine comes to Earth and the war that takes place there. Set in the not too distant future, the story takes you to lead all kinds of units against the forces of the universe, which have been averted against the Earth.";
fDesc[8] = "achieved by not only killing the opposing players but also removing their ability to respawn by destroying their spawn structures.";
fDesc[9] = "to a distant future, the sun is now a threat for your planet. So the Earth is beginning to die, The sun is burning everything and is going to convert the planet in a hell.";
fDesc[10] = "aliens. The story tells that a man was able to bring together other men and fight against them. Then that hero was killed but the human race realized that the war just";
fDesc[11] = "friends. If a zombie touches a human, that human becomes a zombie. Your character is dressed in red, and can revert the process by throwing brains into the zombies way. The zombies will grab those brains, and revert to humans again.";
fDesc[12] = "have seen. Plot: In the future the mankind have to travel to another planet through different dimensions. The mankind find another kind of life in the universe but they are hostile.";
fDesc[13] = "Cauldron back in 1996. The goal of each level is to control the three humans and lead them to the exit. But you have to be very careful because sometimes there is no way of going back, and you may have to restart the whole level.";
fDesc[14] = "is a young woman in the babysitting business who’s obviously not afraid of monsters, since the special thing of her business is that she takes care of baby monsters instead of baby humans.";
fDesc[15] = "seems to be that a war has exterminated most of the human race and mutated the people who survived to this war. The rivals in this game are the humans and the mutants fighting for the only resource that they have.";
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 = '...';
}
}