var fDesc=new Array();
fDesc[1] = "Heroes of Warcraft III, three missions showing the Orcs' battles and allows playing through Battle.net™. The missions included in this demo are totally new and do not appear in the full version of the game.";
fDesc[3] = "alien race of machine warriors. You are a pilot surviving the invasion and controlling an advanced military hovercraft.";
fDesc[4] = "game. The idea beneath the game is that Eveline the Wise will have many questions for you, and you’ll have to answer them all by solving different puzzle games. The Realms of Etheria is the scenario of the story.";
fDesc[7] = "spooks and find the treasure.";
fDesc[10] = "their intriguing adventures as they trade exotic goods and engage in real-time battles, all while building the most powerful trading caravan the world has ever seen. Embark on challenging quests and hire fiercely loyal warriors for protection.";
fDesc[11] = "much gold as they can as well as kill the resident Mummy in order to win the game. The Golden Warriors 2.0 game is compatible with Windows Vista but will run equally well on earlier versions of Windows.";
fDesc[13] = "mission is simple - seek and destroy the revolted Machines and reclaim Earth.";
fDesc[14] = "Entertainment. The universe: Vanguard takes place in a medieval fantasy world composed of Elves, Dwarfs, monsters, warriors and all the ingredients that make up a universe of this kind.";
fDesc[15] = "ComStation C12. The user must eliminate all Horde Warriors from C12. If even one of the horde warriors is left, the mission fails.";
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 = '...';
}
}