var fDesc=new Array();
fDesc[1] = ", although its development is daring: you have to create a creature, highly envolved to be the dominant species on the planet and, finally, explore other worlds and dominate them.";
fDesc[2] = "the game. You must change the creatures position on the board in order to form chains of three or more identical creatures. When you succeed in it, the chain will disappear, and the empty space it leaves become occupied for new creatures.";
fDesc[3] = "the galaxy by this. Is a game in which one can lengthen the line-up wherever you want whenever you begin a life of the universe is completely new and very large.";
fDesc[4] = "in the world of lineage. It is a classic MMORPG with a lot of elements very straight forward. Although it may be hard for casual gamers, committed gamers will enjoy this good time.";
fDesc[5] = "and other sea creatures swimming very slowly above a colorful coral reef. At the same time, enjoy the realistic aquarium sounds including bubbles!";
fDesc[6] = "emergence of Shaddar and the demon of Shakkara. Of course, that you will be part of the eternal struggle between good and evil. You are going back to the Ancaria kingdom.";
fDesc[7] = "beautiful crystals, you'll find it hard to stop playing, attaching crystals to each other and making them disappear.";
fDesc[8] = "the other armies fighting to control the stage, or to meet other status of victory specified in each scenario. Heroes of Might and Magic III Complete is a compilation of The Restoration of Erathia and both expansion packs.";
fDesc[9] = "a completely new world, with new rules regarding the schools of magic. It is also the first to depart from the traditional mechanics of the series";
fDesc[10] = "player into a world of mythical ancients creatures and monsters which were safely kept inside Pandora's Box, now they've unwittingly been unlocked by Deckard.";
fDesc[12] = "this game we must build towers to kill the enemies that try to attack our city. If they are able to get to the city some of our peasants will be killed. The aim of the game is to be able to keep some people alive after the wave of attacks is over.";
fDesc[13] = "of real-time strategy game available for the enjoyment of RTS lovers. It is characterized by its original concept of replacing traditional armies formed by men for others entirely formed by robot animals.";
fDesc[14] = "astonishingly evil voices, like that of a Lich Lord, Goblin, Wraith, and many more. Basically this tool doubles the fun of the MorphVOX Voice Changer Software, and serves as an add-on utility, rendering amazingly funny sounds to all its users.";
fDesc[15] = "to know your territory, so you will find a world map and there you will see forests, mountains, rivers, lakes and plains to explore with your armies, as you try to make your cities and heroes thrive.";
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 = '...';
}
}