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] = "Resident Evil is a very successful saga of video games (and movies too). I played Resident Evil 1, 2 and 3 and I really like them. The game was evolving with every release, improving graphics, sound and gameplay.";
fDesc[3] = "horror masterpiece game can be also classified as a co-operative, survival horror action game, it is based on the same Source graphics engine of Counter-Strike and it is to be run on Windows operative system based PCs.";
fDesc[4] = "released from Ubisoft (the game's publisher). It enhaces the texture quality, lightning and fog, in sum the overall graphic detail level is much better.";
fDesc[5] = "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[6] = "S.T.A.L.K.E.R. surprised everybody in the past with its irresistible ambience and a very wise idea to combine such concepts as Survival, FPS or even role. Now comes the turn of this prequel that will show whether it is really at the height of its admired predecessor.";
fDesc[7] = "regular engineer, being called to repair the communications array of a mining ship in a far-away system. He has also received a weird message from someone within that ship. It all looks like a routine mission.";
fDesc[8] = "private detective. The story tells an adventure of Edward Carnby in Central Park . When you start the game, Carnby can not remember anything , and will have to go collect data from his memory in an apocalyptic night, starting in a hotel and finishing in the center of Central Park.";
fDesc[9] = "sound will give you the chills. Silent Hill 4: The room. A new horror story. A new excellent title for those who love the survival horror games.";
fDesc[10] = "or more same-colored blocks to remove them from the board. Bonus points will be earned for forming flowers and other special combinations. Hexic Deluxe can be played in three different modes: Marathon, Timed and Survival.";
fDesc[11] = "action games. Stay as long as possible on fighting pits against hordes of zombies and skeletons. 40 missions and two additional modes: Survival and Greed.";
fDesc[12] = "mystery and action which takes place in a U.S. High School. Leafmore High School was the typical American High school, with its troubled adolescents, the metal lockers, football team and cheerleaders. But for a while, things have changed.";
fDesc[13] = "have to investigate an illegal basis from which their miners are disappearing. Soon you will discover that nothing is what it seems in this asteroid and his survival options depend of your reflexes.";
fDesc[14] = "Shadowgrounds. The game takes place in a distant future (2096), and tells the story of three survivors from an alien invasion to Ganymede, who join forces with the last remaining human resistance in a battle against the ongoing alien onslaught.";
fDesc[15] = "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.";
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 = '...';
}
}