var fDesc=new Array();
fDesc[1] = "out anymore under the belief of common phenomenon, and 'Gunbound' is the only battle is the ‘Lond’.Gunbound battle is the last battle game in the Lond, and it is really popular.";
fDesc[2] = "its spectacular visual finish, which was built on the basis of the Essence engine. This game engine enables us to appreciate the battle from every angle imaginable with an amazing quality.";
fDesc[3] = "famous books of J.R.Tolkien. Plot: Of course that you will be able to find all the characters of the book, but in this case you will be able to be in more battles than in the film.";
fDesc[4] = "way around because you will be surrounded. Go ahead and crush all the soldiers on your way. Place mines for enemies that are real close to you. If you are able enough establish a good perimeter so your enemies won´t get so close.";
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] = "arcade shooter game pits you against the aliens in a ferocious battle to the death. Pilot your ship through 5 enormous galaxies and 50 futuristic, 3-D levels to find all the pieces of the secret weapon. You can play in three different levels: Cadet, Pilot or Ace.";
fDesc[7] = "Faerie Queen’s Magic Jewels! Cast magical spells to battle ruthless monsters and the forces of darkness in your quest to recover the Queen’s glittering treasures!";
fDesc[8] = "you play the British) or British (if you play the pirates). Besides, Pirates: Battle for the Caribbean is totally free and you can download, install and play it, just simple like that.";
fDesc[9] = "with the creativity of the developers.You will discover a world full of fantastic creatures and magic as the pure Japanese style.";
fDesc[10] = "with walls, using the arrow keys to move and the space bar to fire. When you beat an enemy wave, you can go to the next level.";
fDesc[11] = "in a fantasy world, where you will control a character with his own characteristics for the fight. The goal is to defeat your enemies. Plot: The characters can be elves, humans, dwarves, mages, orcs and trolls.";
fDesc[12] = "battle (Hannover) a medium battle (Cyrenaica), you will be able to view a slideshow about the management part of the game and a naval battle video.";
fDesc[13] = "between the rebellions and the empire, which is based on the Star Wars: Return of the Jedi film. Players should fight against TIE Fighters, Star Destroyers, TIE Interceptors, and finally, Executor – a Super Star Destroyer";
fDesc[14] = "of Luke, in the driving seat, to destroy a death star with 30 rebel ships in the Battle of Yavin, which is based on the Star Wars film.";
fDesc[15] = "Jima and the battle of Corregidor, but this time has all the truthfulness, since one of its publishers is the History Channel";
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 = '...';
}
}