var fDesc=new Array();
fDesc[1] = "to enter the new continent unexplored with their richness by exploiting some indigenous to conquer. This version has several bugs and lacks some features present in version 1.1, like some out-of-sync bugs and multiplayer scenarios.";
fDesc[2] = "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[3] = "in the next generation of real-time strategy. Battle it out in unprecedented detail on full 3D environments with all-new units, including Aurora Strike Bombers, Dragon Tanks, and much more!";
fDesc[4] = "standard for the future of RTS gaming once more, C&C 3 takes you back to where it all began—the Tiberium Universe. Published by Electronic Arts Inc.";
fDesc[5] = "mode, i.e the same history and strategy in real time. The big difference that shows the wisdom of the people of Microsoft and Ensemble study is that it adds 5 new civilizations and substantially improves the artificial intelligence.";
fDesc[6] = "of elite army corpses, weapons and technollogy. Generals Zero hour can be played with 3 teams: The Chineese, the Terrorist, and, of course, the American one.";
fDesc[7] = "extremely fun and challenging. There is more to winning than having a better army, I think. You have to keep an eye on many things so that your country is the best and survives each campaign.";
fDesc[8] = "Wars. It was Developed by Electronic Arts.This expansion is able to fill part of the gaps left in C&C 3 using, as usual, the film part of the game.";
fDesc[9] = "the best space RTS ingredients. A long history, several factions, hundreds of weapons, strong multiplayer component and many ships and flying hours.";
fDesc[10] = "sound like something only accessible to great leaders like Julius Caesar or Napoleon, but there are already many games that have managed to convince you that you are able to create a world empire too just clicking your mouse.";
fDesc[11] = "kind, above even games like Age of Empires. The Settlers: Heritage of Kings part of a completely different premise.";
fDesc[12] = "game. In this case, we are going back to battle but with a new civilization, the Macedonian. Plot: Fate of Hellas is set in ancient Greece 2500 years ago, before the rise of Rome.";
fDesc[13] = "territories and raid the other castles treasures to become the King of those lands. Move your army to an adjacent territory to attack, retreat if your army is not bigger that your enemies and move in a smart way to protect your people and territory.";
fDesc[14] = "expand, exploit and exterminate. This is known as the four x for the old gamers. As in the previous games of this saga,you will have to start in a small planet with some resources to build your ship and from there explore another planets.";
fDesc[15] = "terror, a group of courageous men and women has gathered to improve their skills to fight against the evil guild and bring justice back to people's lives. Experience the ancient Chinese Kungfu and magic, enjoy the endless beautiful scenery and mythical environment in which you can develop your own character and interact with other real-life and imaginary beings. This marvelous MMOG (Massively Multi-user Online Game) conquers the hearts of millions of players. Beautiful 2D artistic backgrounds and advanced 3D effects bring characters and environments to life. Sophisticated equipment system with exotic ancient weapon and customized motions designed for each weapon. A lot of treasured gems are waiting for you to explore, which will grant unimaginable power to its owner. Four character types to choose from: gallant Trojan, righteous Warrior, unsurpassable Archer, resourceful Taoist, which...";
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 = '...';
}
}