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] = "you expect. This game includes shooting, fire, weapons and equipment, special effects, intense battles, worthy adversaries. I think you won’t be bored, as you are waited for different surprises and real challenges.";
fDesc[3] = "era for gaming. This game first saw the light when it came out for the XBOX 360's opening. Gamers all over the world were thrilled by all you could do.";
fDesc[4] = "a team of worms and to fight against the other team. 3D graphics. Good sounds. Really fun. You can compete agains the pc or other player.";
fDesc[5] = "popular, for it's special effects and good fighting sequence. The game features 10 characters with 2 characters which can be unlocked by doing some actions such as transformation or fusion. This game also contain 2 more characters and other minor characters which can be unlocked by typing a code at the main menu which you will get after completing the game at Difficult level but the code is most likely no longer secret. All characters are playable by this code. Each character has it's own different attacks. This game contains many type of game play like VS mode: You can fight either computers or a friend, Story mode: To go progress through a series of levels with a boss at each end of the level. Tournament mode 1v1 or 2v2: Fight through a series of Players to progress to the top of the hill to win.Battle Mode: Like a war where you can have minor characters fight along you in a large...";
fDesc[6] = "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[7] = "futuristic game is set in the twenty-sixth century, in which the player has to assume the role of the Master Chief, a cybernetically enhanced \"SPARTAN\" super-soldier.";
fDesc[8] = "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[9] = ", 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[10] = "wants to go to paradise, where his wife is waiting for him. He must fight against all kinds of monsters of the devil. In your search for the monsters, in each level of the game you will visit a lot of different places.";
fDesc[11] = "common at that time, they sailed the seas with their ships, and they stole gold from another ships.With this game you are going to travel to the eighteenth century, in the Caribbean.";
fDesc[12] = "You will choose a character that will represent you on the screen. Once done, you will fight against other 28 different Nintendo characters in a platform scenario.";
fDesc[13] = "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[14] = "character) lives in a fantasy world, her name is Agavaen, she is a thief who lives with other thieves in the woods, but after a fight with her fellows she is on her own.";
fDesc[15] = "supernatural events and the constant pursuit of unnatural evil creatures. Larva Mortus is an upper view shooter in which we must fight all kind of evil creatures and monsters.";
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 = '...';
}
}