var fDesc=new Array();
fDesc[1] = "challenge against yourself. When you choose to play against the computer, you´ll play an 8 ball match. You can choose how many frames and which type of room you want to play in, and your desired player name.";
fDesc[2] = "or in training mode. Choose between six different players and try playing in all the four different clubs. A billiard game with great graphics and views that you can zoom in or out.";
fDesc[3] = "the game, we are in a Pool or Snooker room, with a game table playing against another user. The high quality 3D graphics are excellent, and we can go around the table in 360 degrees.";
fDesc[4] = "graphics and a nice music, which make you believe you are at a bar playing pool. It includes many playing modes: Practice, Eight-ball and Nine-ball modes, and two challenge timed modes in which you have to put all the balls in the pockets quickly.";
fDesc[6] = "of computer opponent. Designed to be fun - you can be racking up pro breaks in 10 minutes.";
fDesc[7] = "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[9] = "allowing you to practice with the ball physics on your PC. You can then position your cue, choose where you want to hit the ball, and the strength you will like to apply to your strike; and then shoot using the space bar and the mouse. Several types of billiards are included.";
fDesc[10] = "for FREE!";
fDesc[11] = "in 6 different games: 3 Ball, 8 Ball, 9 Ball, 14.1, One Pocket, and Pyramid? Play billiards in a garden, a bar, or a castle; and choose from retro, small, or in classic tables . A special Mp3 player lets you listen to music while playing billiards.";
fDesc[12] = "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[13] = "place to play and the equipment. You can play with your partner on the same computer or through network.";
fDesc[14] = "in producing such event, hopefully turning out tons of exciting new competition at your local pool halls.";
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 = '...';
}
}