var fDesc=new Array();
fDesc[1] = "funny stuff. Plot: The third delivery of this saga comes back with an old subject: the time travel. In this case is used by the soviets to eliminate a scientist, Einstein and his developments which will be vital for the Allies.";
fDesc[2] = "can arrest people, is online and there are opponents that are very difficult, you can make almost real missions, in which one holds four companions to fight the enemies";
fDesc[4] = "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[5] = "place after the world is destroyed by an all-out nuclear war. You play as a commander of \"The Project\" whose mission is to rebuild Earth.";
fDesc[6] = "given the task to captain a submarine which is a part of the North-Atlantic fleet. Your orders are to patrol the seas. Every patrol mission will determine the outcome of your whole career.";
fDesc[7] = "helicopter equipped with laser rays, missiles, bullets, and many other special guns. Your mission will be to destroy a dangerous terrorist base, but this won't be an easy task as there are many maneuvers to make, which will require all your skills.";
fDesc[8] = "kinds of video games, from classic arcade games to the newest PC hits. It is the perfect software for all gamers, since you can play the games in its original format, right in the Game Tap window.";
fDesc[9] = "the game Blitzkrieg, which is set on War World II as many other games. As I have said, this game is based on World war II in a very faithful way to the historic events of that time.";
fDesc[10] = "explains your objective the news that your intelligence received from the other side and data of the tank that you are going to use.";
fDesc[11] = "or Pitfall, etc. It is not a professional game creator or multimedia tool. It is a small application. Anyone can create a small game easily. But there are a lot of settings you need to set, when creating a game. Each character or object in the game can be customized in a lot of ways.";
fDesc[12] = "flying airplanes, driving tanks, firing artillery and parachuting behind enemy lines. Build your own worlds and scenarios using the World Builder.";
fDesc[13] = "a lot. You will have to be a pilot of an advanced war helicopter with a wide arsenal. Your enemies will try to eliminate you using many different weapons like tanks, bombs, submachine-guns, etc., and you will have to kill and destroy them first, or your chopper will explode quickly.";
fDesc[14] = "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.";
fDesc[15] = "are going to travel to the World War II, which was as you may know the most bloody war of the history of mankind. All the missions that you are able to do, are in Europe between 1941 and 1944.";
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 = '...';
}
}