var fDesc=new Array();
fDesc[1] = "shall get a lot of services from windows live. It is a free service created by Microsoft. But there are many features that you will need to pay for like the Windows Live Call, which is something like Skype.";
fDesc[2] = "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[3] = ", 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[4] = "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[5] = "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[6] = "Games, Free Games and Free Addicting Games at Factorygames\"";
fDesc[7] = "graphix and physics delivering a new experience for the long time Counterstrike fans. Began as an experiment, now is an experimented success. People from all around the world play it online via STEAM.";
fDesc[8] = "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[9] = "following the orders of a mysterious agency. The game includes more than 20 missions in all, which you'll play in a linear order, one after the other.The graphics of this game are great enough and particularly the sound has been improved so as to make it really enjoyable.";
fDesc[10] = "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[11] = "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[12] = ", 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[13] = "it feels and works absolutely great. There are many features that make this application a nice addition to Windows Live Messenger. The first of them is Action Text. Since Windows Messenger 8.0, new text messages have been added.";
fDesc[14] = "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[15] = "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.";
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 = '...';
}
}