var fDesc=new Array();
fDesc[2] = "flying objects in the space. Invadazoid 1.0 has got several game modes (invasion, survival, classical and boss). Each one has got different rules and strategies.";
fDesc[3] = "The base is attacked by the air forces of the enemy. The enemy troops are landed periodically.";
fDesc[4] = "invasion to take over the entire solar system! Journey to each planet and fight your way through to save the world (again)! One or two players.";
fDesc[5] = "invasion. For achieving this, you must kill everyone coming your way. You begin shooting ships, that need to be hit several times to be sunk, and then the soldiers that would emerge from the ships, if they can reach the coast.";
fDesc[6] = ", you´ll have to pilot your top-secret helicopter loaded with cool gadgets around the alien menace and eliminate all alien bugs. Some of your enemies can shoot you. From time to time a big helicopter will help you paralyzing them with a ray.";
fDesc[7] = "about defending humanity from the future attack prepared by the Cyborg army. Atomaders 2 provides you a fantastic game-play with mind-blowing 3-D graphic and cool soundtracks where you deal with Cyborg Attacks, Escape, Black, Fatal Threat, Back Strike and more.";
fDesc[8] = "been chosen to fight the alien and defend planet earth from an invasion. You have provided with an airship, weapons, and lots of loads to destroy the aliens and protect human race.";
fDesc[9] = "No more \"start button\" presses! Shoot again and again through 9 missions and 47 levels in 5 different worlds. Fight against smart alien armadas and kill mission bosses till your flippers are broken, till aliens have destroyed your starship or till you win... Strike back the INVASION! Save the Universe!";
fDesc[10] = "abducting them. Your goal is to rescue these animals by matching four or more animals of the same type by sliding rows and columns of the barnyard.";
fDesc[11] = "levels in breakout in outer space style. Following the success of the INVASION pinball, WildSnake Software shakes out their new INVASION WAVES. BreakOut, Space Invaders, Galaxian, Arkanoid - big moments in video gaming history. INVASION WAVES transforms this history into the unstoppable challenge of a great arcade game.";
fDesc[12] = "suitable for all ages. This rotate-and-match game is composed of multicolored cubes that fall from above and must be arranged in various patterns.";
fDesc[13] = "universe continues! Download INVASION 2 today and save the universe in this unique twist of Pinball!";
fDesc[14] = "Invasion, a monster shooting game with delightful graphics.";
fDesc[15] = "good and well-designed maps. It also includes new weapons and features such as a drivable tank. With all this new content, as well as a solid story, Invasion is one of the best single-player mods for Half-Life.";
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 = '...';
}
}