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] = "from your PC, playing against other skilled players around the world. That's exactly what Carom 3D let's you to do. You can play pool with a total control of your movements, and a great 3D perspective, so you will be able to rotate, zoom and move the camera as you desire.";
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] = "that different to other pool games already seen, but the stuff around the game is what makes this game pretty unique.The game provides extensive help to get the most out of Cue Club. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[6] = "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] = "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] = "kinds! Precise and robust physical model makes you feel like playing at real life pool club!";
fDesc[10] = "for FREE!";
fDesc[11] = "game and want to learn how to play it, this program is definitely the right one to have. It features stunning 3D colorful graphics simulating a pool table, plus realistic game effects.";
fDesc[12] = "different world,you will meet Hoshi a blue and lovely zwooph with a big trunk like the elephants. his job it to make clouds with his trunk and in that way have rain so his island can have life.";
fDesc[13] = ", International, Frisian, Gothic, Italian, Pool checkers, Russian, Spanish, Sparse, Tai, Turkish checkers and play using the rule \"Give away\".";
fDesc[15] = "9-ball, 8-ball, 15-ball, Straight, Rotation, 10-ball and BlackJack. Strike cue ball with six different hit point to make fast follow shot, slow follow shot, stop shot, draw back shot, left and right english shot.";
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 = '...';
}
}