var fDesc=new Array();
fDesc[1] = "all about: destruction. The game features a single player campaign that allows you to follow the story of Nicko, an illegal immigrant who comes to America in search of the American dream.";
fDesc[2] = "factions representing the powers of the Mediterranean. Your scenario is Europe in middles ages with a lot of political intrigues and the influence of the Church. In that time, The church controlled the international political issues and has total power.";
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] = "Autobot Campaign and the Decepticon Campaign. The Autobot campaign consists in defending Earth from the evil Decepticons; on the other hand, The Decepticon Campaign consist in annihilating the Autobots and gaining control on Earth.";
fDesc[5] = "universe of Star Wars movies. The game tells the story from the times when the Galactic Republic falls to the destruction of the Death Star (Episode III and Episode IV).";
fDesc[6] = "which the player builds an empire in the Medieval era. Stronghold 2 offers more content than its predecessors Stronghold and Stronghold Crusader";
fDesc[7] = "included in this edition with characters from the real world, new civilizations to accompany them, and new features, this game was published by Microsoft Game Studios.";
fDesc[8] = "expansion bases itself in the struggle for the British isles, and sets several kingdoms waging war between them. With all the great things that make Total War great and some more, this is an expansion to have.";
fDesc[9] = "for the New World has never been more challenging. This expansion pack is the answer for all of those that were calling for more of the New World.";
fDesc[10] = "Teutonic Order or the Easter Pagans for supremacy. The expansion lives up to all the expectations and it is a must have for all Total War fans.";
fDesc[11] = "and Magic V. This pack presents several enhancements over the original game. The storyline begins from some time after the story in Heroes of Might and Magic V. Multiplayer mode allows all players on a map to move their units without waiting for the other players during a turn.";
fDesc[12] = "of Age of Empires and The Age of Kings , introduced the revolutionary Age of Mythology. The expansion includes interesting elements to the game: 12 divine powers, 15 units and 10 units mythical human formidable.";
fDesc[13] = "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[14] = "mode. In the action mode you will have to catch as much fishes as you can in a limited time, and in the campaign mode you have to catch similar fishes in a row. During the game you can buy different accesories while you get combo goals.";
fDesc[15] = "developers of the Cossacks series. It is published by CDV. The game action is developed between the fifteenth and nineteenth centuries in the Americas.";
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 = '...';
}
}