var fDesc=new Array();
fDesc[1] = "8-ball, Cutthroat, 3-ball, Golf, 14.1 Continuous modes. He/she can choose to play some Trick Shots, too. Each time you select a mode, Backspin Billiards will display a screen with the rules for that specific variant, along with the options you can modify.";
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[5] = "with an integrated online competition feature, thus maintaining the realism of pool championships in style of the real life.";
fDesc[6] = "play... Tuned ball physics, new Ivory ball set and 5 extra cues bring even more attraction to the gameplay.";
fDesc[7] = ", you bet only for fun. You have to obtain a login name and password if you don´t have one. Membership is free, but you must declare you´re an adult.";
fDesc[10] = "online against other players worldwide. The QuickPlay mode is a 4 ball game, played in the Garage, you can vary the length of the game in matches, the Table Setup (Amateur, Professional, Championship or Custom), and if you want a shot clock or not.";
fDesc[11] = "of computer opponent. Designed to be fun - you can be racking up pro breaks in 10 minutes.";
fDesc[12] = "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[13] = "snooker. After choosing the appropriate game, you can connect to an Internet server, where you will pick a channel with several hundred players to talk and compete with. Offline two-player games are supported.";
fDesc[14] = "ready for amazingly realistic 3-D billiards featuring nine different play modes including Cutthroat, 8 Ball, and 9 Ball. Test your skills with pre-set trick shots or play against the computer or a friend.";
fDesc[15] = "having fun. There are multiple activities aimed at developing and training different skills and abilities: visual memory, mouse, keyboard, computing, listening comprehension, letters of the alphabet, numbers, direction, speed, etc.";
fDesc[16] = "modes of play, accurate physics and modelling, play snooker and chat with others on the Internet.";
fDesc[17] = "pocket every ball before they all explode. That´s because they are not balls, they´re bombs, and they will begin a 120 seconds countdown till they burst. If any of that bomb is still on the table when the counter reaches zero, there will be an explosion, and the game will be over.";
fDesc[18] = "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[20] = "kinds! Precise and robust physical model makes you feel like playing at real life pool club!";
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 = '...';
}
}