var fDesc=new Array();
fDesc[1] = "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[4] = "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[5] = "of computer opponent. Designed to be fun - you can be racking up pro breaks in 10 minutes.";
fDesc[6] = "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[7] = "with an integrated online competition feature, thus maintaining the realism of pool championships in style of the real life.";
fDesc[8] = ", 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] = "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[11] = "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[12] = "modes of play, accurate physics and modelling, play snooker and chat with others on the Internet.";
fDesc[13] = "for FREE!";
fDesc[14] = "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[15] = "play... Tuned ball physics, new Ivory ball set and 5 extra cues bring even more attraction to the gameplay.";
fDesc[16] = "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[17] = "kinds! Precise and robust physical model makes you feel like playing at real life pool club!";
fDesc[18] = "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.";
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 = '...';
}
}