var fDesc=new Array();
fDesc[1] = "instance, if you shoot a ball down a pocket with the Dommelsch logo, you will receive one of three kinds of jokers. These let you sabotage your opponent's balls in three different ways. For example you can make one of your opponent's ball stick firmly to the table.";
fDesc[2] = "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[3] = "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] = "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] = "of computer opponent. Designed to be fun - you can be racking up pro breaks in 10 minutes.";
fDesc[7] = "computer. You can even choose your computer opponent´s ability. You can choose the ball you want to hit, and the program will help you showing lines with the path the ball will take when hit.";
fDesc[8] = "with an integrated online competition feature, thus maintaining the realism of pool championships in style of the real life.";
fDesc[9] = "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[10] = "BlackJack and Bonus games.";
fDesc[11] = "for FREE!";
fDesc[12] = ", move or shoot the Chromates to complete hundreds of cunningly designed levels.";
fDesc[13] = "choice and challenge a friend or the computer in different levels and game modes. Earn money and travel to different cities to challenge experts.";
fDesc[14] = "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[15] = "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[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[18] = "kinds! Precise and robust physical model makes you feel like playing at real life pool club!";
fDesc[19] = "the whole family. There are six different modalities of the game, and you can play with your friends or relatives on the same machine or online.";
fDesc[20] = "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 = '...';
}
}