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] = "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] = "with an integrated online competition feature, thus maintaining the realism of pool championships in style of the real life.";
fDesc[4] = "play... Tuned ball physics, new Ivory ball set and 5 extra cues bring even more attraction to the gameplay.";
fDesc[6] = "individual scoring stats. *Automatic place calculation(compliant with FIFA 2006 regulations). 5 languages (Spanish, English, French, German, Dutch).";
fDesc[8] = "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 = '...';
}
}