var fDesc=new Array();
fDesc[1] = "game of historical empire building in which the player builds an empire from scratch. All full-time standard game starts in 4000 BC with a single settler, to build the first city, and an explorer or a warrior.";
fDesc[2] = "amazing game in every sense, by size, quality, entertainment and, above all, by new units including: the titans a powerful mole capable of massive destruction.";
fDesc[3] = "get mines, lasers, nuclear bombs, piranha, lightning, insulators, infectors, ball lightning, homing lasers and more!";
fDesc[4] = "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[5] = "Commander takes as its starting point the best of Total Annihilation. Many people dare to proclaim this game as the spiritual successor to Total Annihilation.";
fDesc[6] = "of Age of Empires and The Age of Kings , introduced the revolutionary Age of Mythology. The expansion includes interesting elements to the game: 12 divine powers, 15 units and 10 units mythical human formidable.";
fDesc[7] = "Realms. In this game, we will take control of a Cherokee called Domasi Tawodi to fight a number of alien races. The game will include innovative styles of gameplay and some new elements as \"Wall Walking\".";
fDesc[8] = "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[9] = ", Predator, or a human Colonial Marine. Each character has different objectives, abilities, and weapons at their disposal. The single-player campaigns present the player with conventional series of levels to progress through that are designed around the abilities of each character.";
fDesc[10] = "called brainwave entrainment. You can sit through and experience specific sessions, each designed to stimulate a specific brainwave pattern, thereby bringing about a long-lasting change.";
fDesc[11] = "panel. By clicking on the elements of that tree, you can choose the images you want to see. They will be displayed in the upper right panel. In some cases, you will see some related slides in the lower left panel. The lower right panel will show you some data about the picture you´re watching.";
fDesc[12] = "like out-of-this-world creature, the MorphVOX Galactic Voices 1.3 is just the right kind of deal, which comes as a free add-on for the MorphVOX Pro Voice Changer software.";
fDesc[13] = "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[14] = "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[15] = "feature recognition allows automating post-processing such as red-eye removal and skin tone adjustment, creating 3D head models and morphing tools.";
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 = '...';
}
}