var fDesc=new Array();
fDesc[1] = "It takes you to the wonderful world of Egyptian pyramids, to search for uncovered priceless treasures. In spite of being a classic brick-breaking game, it turns out to be not repetitive or too easy as other games of this type may be.";
fDesc[2] = "predecessor that makes it a much better game. With 160 levels to play in nice environments, Lost World should be a good choice for arcade gamers.";
fDesc[3] = "right on the computer. The program features: zoom in and out, 360 degrees rotation of the view, bricks connections between each other and rotation, etc.";
fDesc[4] = "high scores, and a set of new backgrounds and game pieces. The player can choose between four game modes: Traditional, Puzzle, Relapse or Strategy.";
fDesc[5] = "Ball, and Big Ball, multiple ray-traced balls, explosive bricks, an easy to play Kid-Mode, a euro-techno sound track, and highly addicting game play. New version adds multi-player, more music, and new options.";
fDesc[6] = "blocks of the same color together. There is also a \"Supa Weapon\" available which can be used when it's fully charged.Each time we fill up our Brick-o-Meter we will get to the next stage.";
fDesc[7] = "must hit, it will destroy some things (like bricks, or jelly fishes), and bounce against others towards you. You must avoid the ball to escape from the lower bottom of the screen, and catch the falling jewels and power-ups that will fall sometimes.";
fDesc[8] = "making the balls bounce on your bat and the walls. The bricks are destroyed when the ball touches them. Should you miss the ball, you will lose a life.";
fDesc[9] = "board with wall in three sides, and you with a bat in the remaining side. You have to make a ball bounce on the walls or your bat, and destroy bricks on the board.";
fDesc[10] = "uses the same formula, added with an Egyptian theme. The results are amazing, with a great presentation, sound and graphics. It basically improves everything Brickshooter has. An excellent puzzle game.";
fDesc[11] = "difference in Geometry Ball is that you will share the board with a computer opponent, that will bounce its own balls, but they will BUILD bricks. You have to destroy that bricks before they cover all the board, or you lose.";
fDesc[12] = "have to destroy the bricks in order to complete your collection of antique plaques. The game does not show any significant differences with the original Bricks Of Egypt but only a few things were added.";
fDesc[13] = "disappear, and you will pass over to another level.";
fDesc[14] = "colored cubes grow like stalagmites or fall down like stalactites.";
fDesc[15] = "the bricks will only move in the direction of the arrow inside. This creates a great puzzle formula for everyone to enjoy.";
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 = '...';
}
}