var fDesc=new Array();
fDesc[1] = "from the alien invasion using your spacefighter. Player can obtain various extra-weapons and special abilities by destroying enemy cyborgs, fighters and motherships. Each planet has its own cyborg types and an unique powerful boss at the last level.";
fDesc[2] = "fictional in nature. That is to say, there is an alien species and technology is much more advanced that the tech present in Battlefield games. But the gameplay is kind of the same.";
fDesc[4] = "around looking for a reason to explode. Super Star: Flying star explodes into 3 pieces then orbits and fires at tank. Gamma Blaster: Magnetized gamma radiation particles fly through air and terrain.";
fDesc[5] = "they travel. Quad Missile - Four small missiles release at a distance, then home in. Carpet Bomb - Difficult to miss at a distance, very powerful with line-of-sight.";
fDesc[6] = "first time ever were nuclear bombs available for you to use in a video game. That was what sold the game back then. Fear, I would say. The game features one of the most advanced aircraft ever created, the F-22.";
fDesc[7] = "lands Comet: Explodes on contact into six highly bouncy fragments Sunburn: Explodes near tank, fires laser beams that bounce off terrain Riptide: Sends out a horizontal wave of reflective missiles";
fDesc[8] = "Union attacks the NATO forces causing Cold War to turn into Hot War. This patch brings several enhancements including visual effects, better textures, improved physics, as well as fixing the problem with Instant Action starting without any gun ammo after the patch.";
fDesc[9] = ", X-Ray Cannon, Bazooka, Lucky Shot, Shelter, Fire + Ice, Anvil, Flare, Super Flare, Fracture, Claymore, Phantom, Earth Mover, Flak.";
fDesc[10] = "for bonus damage. Gyro Glue: Swirling and burning glue with a large area of effect [new]. Warp Gate: Wormhole + explosive objects from the 8th dimension appear.";
fDesc[11] = "that goes from 1964 to 1973. This title brings different flyable aircraft and weapons that can be used in several missions such as reconnaissance, strike and air support. The game engine is the same used in Strike Fighters: Project 1.";
fDesc[12] = "arcade game doesn’t demand attention concentration or big intellectual exertion. Herewith you can choose the military vehicle, the scene of action and others. You will meet a lot of surprises and interesting things.";
fDesc[13] = "strategic alliances and battle for control of the planets across the solar system. Their main objective is that the Alliance doesn't fall under the control of the Coalition. The game can be played single or multiple players. Futuristic spacecrafts and missiles can be chosen.";
fDesc[14] = "heart-poundingways to play. In the Classic game, you have todefend cities from a shower of alien missiles.And just like the o...";
fDesc[15] = "game Missile Commander. This time the new released version features direct3d-based graphics. The game play is very similar: What you have to do is shoot down the incoming Intercontinental Ballistic Missiles.";
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 = '...';
}
}