var fDesc=new Array();
fDesc[1] = ", those Konami games that were originated by the game Donkey Kong. In this game you need to go through a lot of screens, avoiding dangers and enemies, and collecting gold coins, till you finish your mission.";
fDesc[2] = "aliens that are threatening the Earth. As you complete missions you get money to buy new and more powerful weapons, and be able to fight toughter aliens each stage.";
fDesc[3] = "weapons, and new soldiers. The players can work alone or with the aid of the members of the squad to complete their missions. Patch 1.2 for this version of the saga Medal of Honor includes new maps for the multiplayer mode: Market Garden and Factory.";
fDesc[4] = "land of Iris. The mortals fight for the power and conquest of the land where the ambitions make the players change their alliances all the time with the consequent betrayals. Every decision is important.";
fDesc[5] = "the action: you are not going to fight the terrible Stroggs all by yourself, since you will have the support of elite squads made up of special marines who carry with them state-of-the-art technology, and with whom you will be able to interact.";
fDesc[6] = "Gothic 3 put you in the foots of a hero without name, who has the ability to be a warrior, an archer or a wizard. Plot: The major character comes from the seas to the kingdoms of the continent, where the Orcs have invaded almost every human";
fDesc[7] = "game where you will be able to control a war helicopter while you will fight against a huge number of enemies. Plot:Unlike other games of simulation, this is a very simple one.";
fDesc[8] = "robberies. Law enforcement bodies are no longer able to curb well-armed gangs. A special task force squad has been called to interfere.";
fDesc[9] = "continuing the story of the medieval epic world, it incorporates two important improvements - the 3D graphics and two new races that take part in the battles. Warcraft III All Products includes the original full game, its expansion packs and its update patch.";
fDesc[10] = "events of the last Spider-man movie, Spider-man 3. In this game, you will be able to roam around the whole New York city and put order as you go. A good thing about this game is that it is up to you as how you want to play. You are given a map which tells you where things are happening.";
fDesc[11] = ", 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[12] = "detachments of the terrorists. You are located in the trench and have weapons at your disposal. Fight for the world peace";
fDesc[13] = "players on a single PC and up to eight characters on screen in online mode. This new version has four Battle modes, a survival Stage, a game recording feature and background music.";
fDesc[14] = "seized by terrorist. Action takes place on your behalf.";
fDesc[15] = "a flash version of this classic, recreating the final fight between Ryu and one of his most fierce rivals, the powerful Sagat. After being defeated by Ryu in their last fight and with an awful scar in his chest, Sagat is ready to face his legendary opponent.";
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 = '...';
}
}