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[2] = "play, it just includes some ads during the game, but nothing too annoying. It is solid and it has a great theme.";
fDesc[4] = "improve and balance this already addictive game. New campaigns, new troops, new buildings, new spells, new escenaries, a greater balance make this expansion an obligatory purchase for Warcaft's fans.";
fDesc[5] = "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[6] = ", and only a handful of men and women who become modern Templars fight against the hordes of monsters that try to destroy the little thing that remains of what we called London.";
fDesc[8] = "also trolls, goblins, elves and more. Every so often, wars between the races broke out. And chaos reigned..";
fDesc[9] = "just say that is about a fantasy world, is a role play and its very addictive. Plot: The scenario is the fantasy world of Norrath, in this time the continent of Atonica has been separated in small islands each of one can´t communicate with the others.";
fDesc[10] = "is the net that is following you, if you get closer, you're trapped. Besides the net, there are many other obstacles on you";
fDesc[11] = "alien race of machine warriors. You are a pilot surviving the invasion and controlling an advanced military hovercraft.";
fDesc[12] = "screensaver presents a map of Middle Earth with a rotating Ring of Sauron that changes its size as it gets closer to you for a better view.";
fDesc[13] = "spooks and find the treasure.";
fDesc[17] = "mission is simple - seek and destroy the revolted Machines and reclaim Earth.";
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 = '...';
}
}