var fDesc=new Array();
fDesc[1] = "III and its expansion pack, and it tells the player that the conflict between the factions is ideological, and not a merely good-versus-evil thing. Depending on your starting point, players will have to undertake different quests, face different monsters, and so on.";
fDesc[2] = "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[3] = "awesome firepower to its target. You alone are the hope of a nation. It won't be easy - varying landscapes, the darkness of night, and mighty defenses lie ahead.";
fDesc[4] = "world, by gaining new territories and defending them. You are a general, commanding your forces against your neighbors, just by rolling a dice.";
fDesc[5] = "series. As well as the TV show, the game is set in an Asian-like world in which the main protagonist has his adventures";
fDesc[6] = "all fans of the genre. The game objective consists in invading and capturing territories, and if possible taking over the world. Conquest is challenging and very engaging; it requires a well planned strategy to defeat enemies and the ability to make quick tactical decisions.";
fDesc[7] = "territories and raid the other castles treasures to become the King of those lands. Move your army to an adjacent territory to attack, retreat if your army is not bigger that your enemies and move in a smart way to protect your people and territory.";
fDesc[8] = "tactical wargame. The player is not inside and responsible for a single Mech; now, he has the duty to lead and command many other Mechs and vehicles to achieve any given assignment.";
fDesc[9] = "Vietcong, a first-person action shooter set during the infamous conflict in Southeast Asia! Command expertly trained members of the U.S. Special Forces on critical missions through dangerous territories! You are the leader of one of the finest fighting forces ever assembled. It's time to show the world what you";
fDesc[10] = "southern Russia early the thirteenth century. The leader of this land was one of the sons of Genghis Khan, Batu, who led the \"Blue Horde\" from the east and gradually added more territories until founding the notorious Golden Horde. All this happened in the Crusaders time.";
fDesc[11] = "modern tactical game viewed from an overhead camera. The game features a role-playing futuristic story scenario where the USA has suffered nuclear destruction and has disintegrated to six nation states that have descended in to war.";
fDesc[12] = "an application with which Dx Atlas is integrated, and for all the radio amateurs it is a propagation tool.";
fDesc[13] = "Civil War. You will also find a very helpful map with cities, geography and dates of that time. Each map shows you the opposing armies along with the territories controlled by each.";
fDesc[14] = "find the best way to get safely to your goal. Search for valuable things and food to buy and sell. Drive your wagon in the best way possible.";
fDesc[15] = "over large track territories. This game simulates the gargantuan routing tasks a real-life dispatcher faces daily.";
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 = '...';
}
}