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] = "simulation of infantry combat in the European and North African Environments during World War II. Allied Assault is the first game in the Medal of Honor saga to be launched for Windows. Patch 1.2 brings several changes and improvements.";
fDesc[3] = "weapons, and new soldiers. The players can work alone or with the aid of the members of the squad to complete their missions. Patch 1.2 for this version of the saga Medal of Honor includes new maps for the multiplayer mode: Market Garden and Factory.";
fDesc[4] = "lot of action, easy controls and, of course, a spectacular graphics display . Plot:You will be able to shoot to new enemies.";
fDesc[5] = "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[6] = "game where you will be able to control a war helicopter while you will fight against a huge number of enemies. Plot:Unlike other games of simulation, this is a very simple one.";
fDesc[7] = "first-person game, but, unlike other games in the genre, you don't even see your arms when you are not fighting. You see everything Riddick sees, but you only see your hands/arms/legs when you use them to attack an enemy or activate something.";
fDesc[8] = "imagine comes to Earth and the war that takes place there. Set in the not too distant future, the story takes you to lead all kinds of units against the forces of the universe, which have been averted against the Earth.";
fDesc[9] = ", 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[10] = "by foot against enemies. Two modes: alone or co-operatively, both online and offline modes have enhanced weapons to ensure teamwork.";
fDesc[11] = "that this title is \"a perfect mixture between \"Wing Commander\" and \"Battlestar Galactica\". Indeed, it is a game that brings a lot of action in its over 30 challenging missions with carrier management and ranking system.";
fDesc[12] = "power up your space ship with shields and weapons, and you will also get extra bonus and extra life. Xeno Assault comes with a lot of different game modes, missions and difficulty levels.";
fDesc[13] = "in a desperate attempt to control the landscape. Begin your crusade by conquering easy levels and progress to harder levels where your knowledge of each creatures strengths and weaknesses will be heavily tested. Play Swarm Assault today and discover why the creepy crawlies dominate this planet! For more fun games try Swarm Rampage and Cosmic Fortune.";
fDesc[14] = "year. Xeno Assault II will capture your mind with breath taking game play and heart pounding arcade action!";
fDesc[15] = "games, it has many of the characteristics of today's modern ones. It features crisp 16-Bit pre-rendered 3D gra...";
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 = '...';
}
}