var fDesc=new Array();
fDesc[1] = "in Europe Be a Legend mode, which manage a single player to take him from small teams and benches to the maximum level. The graphics and atmosphere of the stadium was updated and enhanced to complement the experience of PES.";
fDesc[2] = "The Sims 2 includes plenty of new features that enhance the gameplay even more. This new version features an enhanced neighborhood editor that lets you import custom cities from Maxis' own SimCity 4, if you have it installed.";
fDesc[3] = "to enter the new continent unexplored with their richness by exploiting some indigenous to conquer. This version has several bugs and lacks some features present in version 1.1, like some out-of-sync bugs and multiplayer scenarios.";
fDesc[4] = "single player adventures, or in large head-to-head guild battles. Guild Wars is a mission-based game set in a stunning 3D fantasy world that offers excellent support for guilds.";
fDesc[5] = "option among the great number of chess games available, and besides it has a freeware license. Try out this challenging strategy game, against another player or vs the computer!";
fDesc[6] = "lovely creatures called Daggles. With a captivating plot and wonderful graphics, this game really deserves a place in your game collection.";
fDesc[7] = "first stand-alone expansion pack launched for the fifth installment of the game. This expansion should not be missed by any fan of this amazing strategy saga.";
fDesc[8] = "fictional in nature. That is to say, there is an alien species and technology is much more advanced that the tech present in Battlefield games. But the gameplay is kind of the same.";
fDesc[9] = "always searching profits, has established a new base to continue the study of a Martian civilization uncovered by the original science team. In general, this expansion meets all the fans' unsatisfied ludic needs the original version could not cover.";
fDesc[10] = "(a modification of the Quake 2 GPL engine), and aimed on the competitive scene, or the e-sports community. The base gameplay is focussed around the art of movement, meaning moving, speed and tricks play a big part in the gameplay.";
fDesc[11] = "real-time gameplay, with the ability to pause the action at any time. A player can generate a new character or bring a current one from \"Baldur's Gate\" or \"Tales of the Sword Coast.\" The player has to fight in battles in the title gradually and there are hundreds of monsters to slay.";
fDesc[12] = "cartridges. GGPO can be added to existing games to provide network gameplay support to the old consoles´ games. The program uses a peer-to-peer topology to run a complete copy of any available game for each player, transmitting controller inputs over the network to keep these copies synchronized.";
fDesc[13] = "50 pictures, you will enjoy viewing the popular cat doing its favorite activities: taking its naps, sitting on the couch to watch TV, eating lasagna or playing jokes at the clueless Odie. The game is fully enjoyable and a demo version can be downloaded from the developer's website.";
fDesc[14] = "features intelligent gameplay which matches interactions to the player status and the state of the game. Many different aspects of gameplay.";
fDesc[15] = "different. It starts presenting the space marine crash-landing on Earth after getting rid of the demons in the UAC facility, but as he lands, he finds out that the demons have invaded Earth so now he must help evacuate the survivors and free the planet from the hell-threat.";
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 = '...';
}
}