var fDesc=new Array();
fDesc[1] = "through the 18 challenging holes, collect many points as you can, and unlock new characters to have more fun!";
fDesc[2] = "of computer opponent. Designed to be fun - you can be racking up pro breaks in 10 minutes.";
fDesc[3] = "other player. Free Billiards also has a section that you can use to train yourself in the art of playing pool. You can choose the rules you want to play.";
fDesc[4] = "54 fields with different obstacles on them available for the player.";
fDesc[5] = "ball. Sometimes the color of the ball you must hit with the white ball is different than the color of the balls you will need to put into the holes.";
fDesc[6] = "the table by shooting at them with the balls of definite color and combining together 3 or more balls of one color.";
fDesc[7] = "kinds! Precise and robust physical model makes you feel like playing at real life pool club!";
fDesc[8] = "choice and challenge a friend or the computer in different levels and game modes. Earn money and travel to different cities to challenge experts.";
fDesc[9] = "for FREE!";
fDesc[10] = "graphics and neat sound effects; with the new 3-D Cue Stick view make the shots easier or choose an easy to shark-level opponent or grab a friend and play in two-player mode. Hammerhead Pool to Go offers";
fDesc[11] = "game and want to learn how to play it, this program is definitely the right one to have. It features stunning 3D colorful graphics simulating a pool table, plus realistic game effects.";
fDesc[12] = "Beginners will find it particularly useful to learn. The game is absolutely free and features an attractive graphic interface.";
fDesc[13] = "place to play and the equipment. You can play with your partner on the same computer or through network.";
fDesc[14] = "your player's disk to match them and to remove them from the board. Great fun and action in more than 60 levels.";
fDesc[15] = "the whole family. There are six different modalities of the game, and you can play with your friends or relatives on the same machine or online.";
fDesc[16] = "effects. It is an interesting pool game that combines the realism of its graphics and sounds, together with an intuitive control of movements, which provides the accuracy you need to win.";
fDesc[17] = ", move or shoot the Chromates to complete hundreds of cunningly designed levels.";
fDesc[18] = "in producing such event, hopefully turning out tons of exciting new competition at your local pool halls.";
fDesc[20] = "9-ball, 8-ball, 15-ball, Straight, Rotation, 10-ball and BlackJack. Strike cue ball with six different hit point to make fast follow shot, slow follow shot, stop shot, draw back shot, left and right english shot.";
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 = '...';
}
}