var fDesc=new Array();
fDesc[1] = "that is set in a teamplay, you can choose to be a terrorist or a counter-terrorist. Warning: this great game is very addictive! You’ll download it in a few minutes and you’ll be playing it in less!";
fDesc[2] = ", therefore Infinity Ward released patch 1.6. The patch includes 4 new and excellent multi-player maps, along with new features for filtering and several bug fixes.";
fDesc[3] = "guerrilla wars and the diamond struggles, is the setting for one of the most detailed and worked first person shooters ever. You play the role of a mercenary who is sent to Africa to kill a weapon's dealer who has armed both sides of a war that is killing a whole country.";
fDesc[4] = "period. The game starts with a team of US scientists who are sent to an island in the south of China to investigate a weird phenomenon but face a blockade by the North Korean government. Needless to say, that is one critical situation.";
fDesc[5] = "Ubisoft. It has a multiplayer online adventure and a single player mode. Storyline: You play the role of Jack Carver, you are on your boat in a beautiful day in the company of Valerie, a journalist. Suddenly your boat takes fire and you find yourself swimming in the ocean.";
fDesc[6] = "Games, Free Games and Free Addicting Games at Factorygames\"";
fDesc[7] = "aliens that are threatening the Earth. As you complete missions you get money to buy new and more powerful weapons, and be able to fight toughter aliens each stage.";
fDesc[8] = "shooters based on World War II. In this game, you will play the part of Boyd Travers, Private First Class, a paratrooper in the US 82nd Airborne Division";
fDesc[9] = "horror masterpiece game can be also classified as a co-operative, survival horror action game, it is based on the same Source graphics engine of Counter-Strike and it is to be run on Windows operative system based PCs.";
fDesc[10] = ", throughout most of the game, it fails to bring anything new to the world of FPSs. The graphics are nice-looking; the world is depicted with careful regard to realism.";
fDesc[11] = "can a game that tells you that not be awesome? At first I was reluctant to play this game. When I play a first person shooter, I want it to be all about me. I want to go solo and kill the enemy. BIA does things a little differently.";
fDesc[12] = "futuristic game is set in the twenty-sixth century, in which the player has to assume the role of the Master Chief, a cybernetically enhanced \"SPARTAN\" super-soldier.";
fDesc[13] = "has been ported to the PC. You play a certain secret agent, who is sent to a third world country to set it free. So you roam around in gigantic maps and kill people. The controls are pretty easy to use and understand.";
fDesc[14] = "top-down action games, and this is not the exception. Similar to Alien Shooter, you now must fight Zombies, and it is somehow more gripping than the Alien Shooter games. If you like arcade action games, you'll love this.";
fDesc[15] = "are pretty much the same. Just people around until you get bored. With some games it takes me longer to get bored than with others. Call of Juarez is a so-so game in my opinion.";
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 = '...';
}
}