var fDesc=new Array();
fDesc[1] = "games. It is based on a futuristic sci-fi plot with 2D isometric perspective graphics, in which three races from different planets, Terra, Protoss and Zerg, are fighting for supremacy and survival.";
fDesc[2] = "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[3] = "of oil. This makes the whole world economy to be disturbed and peace is torn to shreds because countries are trying to take over the remaining oil wells. Kaos Studios puts you in this situation. What will you do you?";
fDesc[4] = "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.";
fDesc[5] = "helicopter equipped with laser rays, missiles, bullets, and many other special guns. Your mission will be to destroy a dangerous terrorist base, but this won't be an easy task as there are many maneuvers to make, which will require all your skills.";
fDesc[6] = "many weapons like laser rays, bombs and other sophisticated arms. They will help you combat against malignant extraterrestrial forces across the universe.";
fDesc[7] = "as it seems and exposing the truth is the only hope of restoring freedom. Battle against the forces of conspiracy and master amazing tag-team fighting combos with allied resistance fighters.";
fDesc[8] = "Calypso, to which new players arrive. The game features an innovative concept of linking real-life currency with the in-game currency, effectively creating a game with a cash economy. It is an innovative concept and is well done.";
fDesc[9] = "take the role of an enhanced elite operative that has to dismantle a terrorist organization. The action is great and the game is a very solid product. Deus Ex fans should like this game as well.";
fDesc[10] = "Person Shooter) category in which weapons are used, in this case are futuristic weapons. Following the outline of the saga two teams are placed on a battlefield with certain objectives to be met in order to prevail on the opposing team.";
fDesc[11] = "for their control. The game has a great amount of features and futuristic items. It is stable and is fun to play. The best thing is that you can play it for free. You cannot miss the chance to play it.";
fDesc[12] = "monsters, that will try to catch you while you walk in every direction by using the cursor movement keys. You have a weapon that you will aim moving by moving your mouse, while firing your gun using its left button. Each time you hit an enemy, it will burst leaving a big blood puddle.";
fDesc[13] = "itself is really beautiful. Its design is very simple, but at the same time, I don’t know if the combination of colors, or the several effects on the screen, provide a very advanced, maybe futuristic view to it.";
fDesc[14] = "virtual planet-sized space ship’s environments and futuristic characters' personalities. Players are challenged to interact with the wave of change taking place on the Harbinger virtual space ship and to help overthrow the ruthless rulers.";
fDesc[15] = "air, skidding off buildigs and I/O towers, blowing away digital I/O streams, all while trying to hit speed pads for hyper speed boosts!";
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 = '...';
}
}