var fDesc=new Array();
fDesc[1] = "flash based massively multiplayer online role-playing game (MMORPG). Its concept is mainly that of a tactical game featuring wild humor but with a unique style if we compare it with other MMORPGs.";
fDesc[2] = "you expect. This game includes shooting, fire, weapons and equipment, special effects, intense battles, worthy adversaries. I think you won’t be bored, as you are waited for different surprises and real challenges.";
fDesc[3] = "the action: you are not going to fight the terrible Stroggs all by yourself, since you will have the support of elite squads made up of special marines who carry with them state-of-the-art technology, and with whom you will be able to interact.";
fDesc[4] = "button bashing and combat is that of an arcade fighting game. The 2D environments blend nicely with the game-play and it does make a good combination. This game is not for everyone but it's free, so you can try it without problems.";
fDesc[5] = "players on a single PC and up to eight characters on screen in online mode. This new version has four Battle modes, a survival Stage, a game recording feature and background music.";
fDesc[6] = "bomber. You are entrusted with a difficult mission - to eliminate all enemy raiders and land invaders.";
fDesc[7] = "features wonderful graphics, well-made effects, and good sounds. For those who have never played this game, it is basically a fighting game in which Men and Beasts try to demolish each other using low-tech weapons and colorful spells.";
fDesc[8] = "universe. Plot: In this game you will be able to create your own character and define all his or her skills: if you're a warrior, you will have to choose different weapons, if you're a wizard, you must choose the most powerful spells.";
fDesc[9] = "forces and recover the realm. You will be fighting against evil spiders, cyclops, orcs, and wizards among other creatures. Be sure to catch all the spells and bonuses after destroying your enemies, this way it will be much easier to kill the monsters at the end of each level.";
fDesc[10] = "World War II, but without having to deal with the simulator controls complexity. What matters in this game is your skill to stop the enemy.";
fDesc[11] = "tactical wargame. The player is not inside and responsible for a single Mech; now, he has the duty to lead and command many other Mechs and vehicles to achieve any given assignment.";
fDesc[12] = "competition in the multi player modes.";
fDesc[13] = "equipped with fighting weapons and a bomber. You are entrusted with a difficult mission - to eliminate all enemy raiders and land invaders.";
fDesc[14] = "you will find a multitude of detailed creatures that live by and for the Ether, intrinsic element in all of the inhabitants of Etherlords.";
fDesc[15] = "Episodes. This is the first one. All the episodes use the Source engine, which is one of the best for first person shooters. Since the release of the game, the engine has been updated several times, and those changes reflect on the games that use the engine.";
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 = '...';
}
}