var fDesc=new Array();
fDesc[1] = "those games, you have to keep the ball bouncing into three walls, destroying thing as it touchs it, and getting points for it. From time to time, a destroyed item will free a bonus item, that will give you some advantage if you catch it.";
fDesc[2] = "analysis, a tool that many companies use to know the sites you visit, and where are you physically located. Tor 0.1.2.19 achieves this by bouncing your communications around a distributed network of relays run by volunteers all around the world.";
fDesc[3] = "compare it with the previous edition, so if you are already a Peggle player don’t expect many news of this new version. To pass each level you must hit all orange pegs in the screen before running out of balls to shoot.";
fDesc[4] = "create scenes with different physical effects, combining them with art that you can draw using the mouse. You can create scenes in which the things you include can interact (colliding and bouncing), fly, flow, swing or ride. You can test the behavior of your scene by pressing the \"Play\" button.";
fDesc[5] = "terrain. Volcano: Massive eruption that throws fire and debris everywhere. Pedestal: Puts the tank up on a high pedestal. Fire Storm: Multiple explosions with a sea of awesome bouncing fireballs.";
fDesc[6] = "that rains hundreds of bullets, will stop over opponents tanks. Porcupine: Projectiles cut through any defense to hit fortified opponents.";
fDesc[7] = "flaming molten rubber that coats the terrain. Side Kick - Bullets fire from the sides of the playfield. Blockade - Encase enemy tank in a hollow shell. Stun Gun - Two bullets are launched, spreading out over time.";
fDesc[8] = "from the grid by arranging them in groups of at least three of the same color. The game presents a colorful interface, with smooth animations. It has been developed in flash so is very small in size, and still its graphics are of good quality.";
fDesc[9] = "– or several of them – bouncing as long as you can so the ball can destroy an arrangement of bricks and stuff. To do that you have a ship on which the ball bounce when it comes down to the bottom of the screen. You can control your ship by moving your mouse sideways.";
fDesc[10] = "your strategy in Perpetual mode. You will never grow tired of Pop & Drop Deluxe, even if you play it every day!";
fDesc[11] = "are the same as those of Arkanoid. The game basically consists in keeping a ball – or several of them – bouncing as long as you can so the ball can destroy an arrangement of bricks and stuff. You can create new scenarios to play.";
fDesc[12] = "show you just that. A group of colored balls bouncing all around the screen and colliding against each other. Don't expect fancy animations, or continuously changing images. All you will get is the groups of balls doing their thing.";
fDesc[13] = "additional thrill. Just Breakout offers you tremendous excitement while it also tests your patience and reflexes.";
fDesc[14] = "as many balls as possible in the playing field and you will get a great highscore.";
fDesc[15] = "(new in v2.0) blots of paint. Five pictures are included but you can also load images of your own choice.";
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 = '...';
}
}