var fDesc=new Array();
fDesc[1] = "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[2] = "play... Tuned ball physics, new Ivory ball set and 5 extra cues bring even more attraction to the gameplay.";
fDesc[3] = ", 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[4] = "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[5] = "most popular game variants, Snooker, 9-Ball and 8-Ball mode. This program will give you great emotions and fun, because PoolStars is not only a game, but also an emulator that will let you play exciting matches against other people over the Internet.";
fDesc[7] = "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[8] = "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[9] = "modes of play, accurate physics and modelling, play snooker and chat with others on the Internet.";
fDesc[10] = "the table by shooting at them with the balls of definite color and combining together 3 or more balls of one color.";
fDesc[11] = "reds) games. We have 4 Elite Tournaments per day, monthly Snooker Skill Tournament and Online Snooker League, bonus";
fDesc[12] = "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[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 = '...';
}
}