var fDesc=new Array();
fDesc[1] = "that needs to eat smaller fishes to grow up; likewise, we get points, bonuses, and pass on to next levels. The game becomes more and more interesting (and difficult) as we grow bigger and get to eat our old enemies.";
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] = "games. With a similar exciting action such as that one experienced while playing Hop and Dodge, Varmintz has come into existence to deliver fun and entertainment all throughout its 50 crazy levels!";
fDesc[4] = "freelancer Edison Trent, an intergalactic jack-of-all-trades. Your mission: whatever you want. Become a smuggler or a ruthless space thug, a naval hero or a trader. Dodge through asteroid fields while piloting elite spacecraft. The action is endless as you make your way through 48 known star systems. Greed, morality, compassion, anger... whatever motivates you, the dynamic universe will respond. Take the first step. The universe is waiting.";
fDesc[5] = "to reach the end of the stages. To do this you must drive Stinky and loof through the 3D alleys and move boxes, dodge fireballs and much more to reach the goal.";
fDesc[6] = "100 levels.";
fDesc[7] = "dodge and duck through an intricate theme park with the unflappable goal of saving the infamous Mr. Meow.";
fDesc[8] = "character is an Asian detective who can apparently dodge bullets left and right without even sweating a drop. When I first played this game, I couldn't help thinking about Max Payne.";
fDesc[9] = "needs to pick carrots and other vegetables while anvils rain from the sky. The game is very nice, and kids will really like it.";
fDesc[10] = "obstacles and collect bonuses that gradually open the image of a beautiful girl. Simple controls and bright graphics!";
fDesc[11] = "on dirt. In the game you compete on more than 20 different tracks including Dodge City, Eldora, Williams Grove and world-famous Knoxville Raceway.";
fDesc[12] = "O’Connor’s Windows Games UFOs. The user has to guide their UFO to try to snatch as many crystals as they can before the opponents get them. There are also \"Meanies\" out there who will try their best to ram or shoot the user.";
fDesc[13] = "level. Race the rising tide, battle snow drifts and dodge flames while playing three original game modes.";
fDesc[14] = "you won't survive for long.";
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 = '...';
}
}