var fDesc=new Array();
fDesc[1] = "a lot, and easily. In this case, the game has little to nothing to do with the Tom Clancy world. You are given hints that you are indeed in the timeline portrayed in several other TC games, but that is it.";
fDesc[2] = "one of his trips to the Middle East and realizes that selling arms is not a good business for his soul. He develops a robotic suit that helps him fight foes left and right. The game features awesome graphics and many weapons that can be used from within the suite.";
fDesc[3] = "Africa, Asia, Eastern Europe and Middle East. Players play the role of Thomas Mason, a mercenary whose goal is to strive hard to free the world from terrorism threats.";
fDesc[4] = "sound like something only accessible to great leaders like Julius Caesar or Napoleon, but there are already many games that have managed to convince you that you are able to create a world empire too just clicking your mouse.";
fDesc[5] = "is the creator of the original script of the video game.The argument of Jericho takes you to a city in the Middle East, Al-Khali, erected on the ruins of other ancient cities.";
fDesc[6] = "ambiented on modern war and with several vehicles and lots of action and fun, when speed, skills and tactics are essential to win!";
fDesc[7] = "shooter, arcade-style game ambiented on modern war and with several vehicles and lots of action and fun, when speed, skills and tactics are essential to win!";
fDesc[8] = "maps of Europe, North America, South America, Middle East, Australia/New Zealand, South Africa. In some countries only major cities have street level maps. Map24 Desktop runs on any Windows desktop PC with an internet connection.";
fDesc[11] = "renewed release of Strike Fighters: Project 1 and it is set in a a fictional conflict which takes place in the Middle East, the involved nations are the Kingdom of Dhimar and the Empire of Paran, and it covers the period of time between the years 1950 and 1970.";
fDesc[13] = "the same. In this application, we can play five different types of card games with three virtual opponents. It is possible to change our name and theirs, and select their play levels. We are allowed to team up with another player.";
fDesc[15] = "Easterns almost every day. The recipes are hand picked from many neighboring Arabic countries. Recipes are so easy to follow.";
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 = '...';
}
}