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] = "of time travel that we are used to. Instead, it is more of a mental, inner journey to the past of the main character's ancestors. You play him, the main character.";
fDesc[3] = "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[4] = "way from machine guns, missiles, bombs, lasers and air support. After destroying some enemies you will earn extra bonus, powerups, weapon upgrades and ranking.";
fDesc[5] = "you pass the level, otherwise you lose. What is hard about this game is that you don’t have a direct shot to each orange pegs and it’s kind of hard to calculate all the bouncing the ball will do when you shot an indirect ball.";
fDesc[6] = "power and raise Atlantis, the submerged continent. This game is a great challenge of speed and logic. Graphics and moves of this game are well done and the game is very entertaining.";
fDesc[7] = "the three games is to collect as much money as we can, so that the money meter reaches the highest position and we move on to the next level. Each game features three levels of difficulties: easy, normal, and hard.";
fDesc[8] = "way through the game into the end. Magic Balls 3.5 combines great graphics and lighting effects to create a 3D visual effect in the balls, so your experience becomes richer.";
fDesc[9] = "to this great saga. This time, the Prince of Persia, decides to go back in time, to kill a creature called Dahaka, which is like a black hole, eats everything in its way.";
fDesc[10] = "made its grand debut on the XBOX 360 when the console was just released. The game introduced certain features that were long missing from the previous games. The most important change from the previous game is the great graphics that this game has.";
fDesc[11] = "trade exotic island goods, amassing wealth and power. Earn enough gold to upgrade your ship and engage in land and sea battles.";
fDesc[12] = "saga. As you probably know, with this game you are going to travel to the ancient Persia, a land of adventure and magic.";
fDesc[13] = ", in around 20 missions and two game-play modes. With good graphics and sounds that complement the game-play, this game is very complete. But a price tag that high is bound to make your wallet think a bit about the game.";
fDesc[14] = "all the tension and the entertainment of the film. First-person action sequences blends with third-person components, in your trip through the Skull Island (almost all of the game action take place there) you are both, Jack Driscoll and King Kong.";
fDesc[15] = "the galaxy. This fast-paced game is full of action, as enemy ships and huge meteorites appear from all sides, forcing you to avoid them while at the same time shooting your enemies and collecting the power-ups.";
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 = '...';
}
}