var fDesc=new Array();
fDesc[1] = "you have to throw balls with a given color to groups of two or more balls with the same color, making them disappear before they reach a hole located near the center of the screen.";
fDesc[2] = "choosing a ball you wish to place in an adjacent place, and click over that place. The balls will change positions, and if they complete a row of three or more balls with the same color, the row will be cleared. You can“t move the black balls.";
fDesc[3] = "is fun, non violent, and all family members can play it. With visually attractive graphics, this game guarantees fun for gamers of all ages.";
fDesc[4] = "enjoy this challenge in a battle against the thiefs of your treasures. Collect your treasures and ancient pieces to rest your soul and enter the after life.";
fDesc[5] = "shooting at them figures of the same color. If they reach your garden you will automatically lose and will have to start all over again.";
fDesc[6] = "above.";
fDesc[7] = "you from the top of the screen. You will need to shoot bubbles of the same color that the one of the two balls that you have in your cannon. You can switch between them by pressing the right button of your mouse.";
fDesc[8] = ", filled with colored balls. There will be blue, red, green, cyan and yellow balls, randomly distributed. By double-clicking on groups of two or more adjacent balls with the same color, you will make those groups disappear from the board.";
fDesc[9] = "The new concept in this game is: so called BONUSES, thanks to which the game will not become boring too early. Do not show it to w...";
fDesc[11] = "balls, wind and gravity to put every ball into combo. Nice graphics and effects, realistic physics, smooth oriental music, 3 game modes and more.";
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] = "This can be done by scrolling vertically or horizontally rows of colored balls. If a big enough hole is generated because of ball explosions, bigger balls will appear.";
fDesc[14] = "create chains of 5 same-colored balls. The game is free, and in spite of being simple, it is entertaining enough to keep you occupied for a while.";
fDesc[15] = "them. By doing this, you make them disappear from the board but three more balls are added. The game allows you to choose from four different board sizes (7x7, 9x9, 11x10, and 14x11) and four number of colors (6,7,8 and 9).";
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 = '...';
}
}