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] = "unrivalled gameplay, Snooker147 is the ultimate top-down Snooker simulation for Win95/NT. (Poolster is the pool variant.) In ad...";
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] = "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] = "reds) games. We have 4 Elite Tournaments per day, monthly Snooker Skill Tournament and Online Snooker League, bonus";
fDesc[13] = "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 = '...';
}
}