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] = "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[3] = "play... Tuned ball physics, new Ivory ball set and 5 extra cues bring even more attraction to the gameplay.";
fDesc[4] = ", 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[5] = "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[6] = "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[7] = "world, that are members of this online community. You will be able to play pool, snooker, chess, poker, darts and other games using a single interface.";
fDesc[8] = "that different to other pool games already seen, but this game has a particular atmosphere which makes you feel just fine. The game is pretty easy to understand and very intuitive. You can play it over the Internet.";
fDesc[9] = "modes of play, accurate physics and modelling, play snooker and chat with others on the Internet.";
fDesc[10] = "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[11] = "the table by shooting at them with the balls of definite color and combining together 3 or more balls of one color.";
fDesc[12] = "kinds! Precise and robust physical model makes you feel like playing at real life pool club!";
fDesc[13] = "such as chess & checkers against others around the world, and compete in tournaments.";
fDesc[15] = "gameplay and strategies. You can create your own levels which suite your taste and skills!";
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 = '...';
}
}