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] = "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[4] = "Games, Free Games and Free Addicting Games at Factorygames\"";
fDesc[5] = "era for gaming. This game first saw the light when it came out for the XBOX 360's opening. Gamers all over the world were thrilled by all you could do.";
fDesc[6] = "a realistic looking environment with different scenarios. AssaultCube works on 64-bit MS Windows (Windows 2003 Server/XP/Vista), All 32-bit MS Windows (95/98/NT/2000/XP/Vist a/2003 Server) and All POSIX (Linux/BSD/UNIX-like OS’s.";
fDesc[7] = "arcade shooter game pits you against the aliens in a ferocious battle to the death. Pilot your ship through 5 enormous galaxies and 50 futuristic, 3-D levels to find all the pieces of the secret weapon. You can play in three different levels: Cadet, Pilot or Ace.";
fDesc[8] = ", in around 20 missions and two game-play modes. With good graphics and sounds that complement the game-play, this game is very complete. But a price tag that high is bound to make your wallet think a bit about the game.";
fDesc[9] = "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[10] = "Activision. This new version of Day of Defeat, is set on the fight in the European Theater during World War II, it uses the acclaimed Source engine, and it is very much realist game, it features better graphics and sounds, and above all great physics.";
fDesc[11] = "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.";
fDesc[12] = ", the game features several game-play modes and a huge amount of maps. The game is fast-paced, fun and stable, which is always a great combination. It is also free, so you must definitely try it.";
fDesc[13] = "of the game is easily inferred from the title. You form a part of a squad that gets lost from the main brigade. You are a squad of three that is constantly ambushed by Vietnamese forces.";
fDesc[14] = "immerses the player in a fierce war between an intergalactic space colony called Halo and some stellar alien invaders known as the Covenants.";
fDesc[15] = "completely different from other similar games. In addition to the outstanding graphics and sounds, the game is pretty easy to control and play. The game includes 6 levels with a particular theme each, and you can play alone or with a partner, which is a plus";
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 = '...';
}
}