var fDesc=new Array();
fDesc[1] = "Heroes of Warcraft III, three missions showing the Orcs' battles and allows playing through Battle.net™. The missions included in this demo are totally new and do not appear in the full version of the game.";
fDesc[2] = "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[3] = "versions. The main difference is that the game is done completely in 3D and allows a total control of the camera, and may change the angle of vision, getting closer and farther from the details of the adventure map as well as during the battles.";
fDesc[4] = "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[5] = "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[6] = "for prince Albrecth who had disappeared. Unfortunately, Tristan’s people were massacred by the horrible daemons inside an underground labyrinth in their search for the prince.";
fDesc[7] = "This title is inspired by the tabletop war game Warhammer Fantasy Battle. The story follows two different strands, each with its heroes and events, one follows the Empire and Elven Forces and the other the Hordes of Chaos and Skaven forces.";
fDesc[8] = "This expansion provides the same thing but with a different historical location. Plot: The ancient world is a source of inspiration, great battles, alliances with other peoples and greed, are the elements that are inside of every empire.";
fDesc[9] = "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[10] = "fiction movies where \"computers\" ruled the world. One of those famous movies, Tron, featured spectacular battles of motorcyclists. GLtron is a game where you will find a kind of recreation of those amazing battles.";
fDesc[11] = "different games: Half Life 2 and its two expansions, the fascinating and innovative Portal and the funny multiplayer Team Fortress 2. Are you sure you can resist? The best first-person shooter for PC is at The Orange Box. An essential pack .";
fDesc[12] = "attacked the Galaxy. You are the captain of a state-of-the-art spaceship.";
fDesc[13] = "game has different action battles and challenging tasks, where you must find different strategies and secrets to defeat your enemies. Learn how to use your powers over water, earth, fire and time line.";
fDesc[14] = "of ancient Persia. \"Kohan\" means ancient in that language. Also, the major character, is based on the most popular king of the Persian Empire: King Darius Javidan.";
fDesc[15] = "players, that fans of the genre will love. The game is inspired by the classic Empire, and the objective is to conquer the world, by destroying the pieces or cities of your enemies.";
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 = '...';
}
}