var fDesc=new Array();
fDesc[1] = "for the New World has never been more challenging. This expansion pack is the answer for all of those that were calling for more of the New World.";
fDesc[2] = "just the same title a year ago, but with a series of expansions and is shipped at a reduced price, so it's a good opportunity for those who are lost in time.";
fDesc[3] = "going to travel to the Caribbean in 17 th century. You can choose between English, French, Spanish and Dutch Caribbean colonies, with eight different scenarios.";
fDesc[4] = "of its different levels. The game is set in a universe where strange plants live and struggle for supremacy. You should control the seedlings and the asteroids; also there are competing colonies of seedlings that you should destroy in order to win the game.";
fDesc[5] = "is that once you finish the game, there is no additional value in it besides the multiplayer options. Fortunately capcom listened us and re-released a more challenging and content rich version, called Lost Planet Colonies Edition.";
fDesc[6] = "immerses the player in a fierce war between an intergalactic space colony called Halo and some stellar alien invaders known as the Covenants.";
fDesc[7] = "want to be in the universe as there are many possibilities, even ruling an empire. However, the game has some flaws. It will appeal only a certain type of gamers.";
fDesc[8] = "Battlestar Galactica already has, at last, a game in which you will be a pilot of the fighter fleet in its fight for survival against the Cylon.";
fDesc[9] = "PC. Thanks to this incredible game, like any British, now you can enjoy this sport which is the basis of American baseball. In this amazing title you will be able to experience the tension in each bowl, in each hit and every race.";
fDesc[10] = "spacecraft in a futuristic atmosphere and in the middle of space battles. It is the year 8002 and there's a big empire called \"KROSSO\" divided into thousads of big colonies. You will have to face the powerful army of this empire.";
fDesc[12] = "Commander Combo has to beat 50 challenging platform levels with many traps and enemies.";
fDesc[13] = "behavior is controlled by several AI patterns. The game is complex but at the same time challenging. A good option for strategy fans.";
fDesc[14] = "the hardest mission. Head for the colonies and rescue its people from the enslavement of extraterrestrials.";
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 = '...';
}
}