var fDesc=new Array();
fDesc[1] = "8-ball, Cutthroat, 3-ball, Golf, 14.1 Continuous modes. He/she can choose to play some Trick Shots, too. Each time you select a mode, Backspin Billiards will display a screen with the rules for that specific variant, along with the options you can modify.";
fDesc[3] = "best of the few that were released. Unlike other golf games, this one is a simulation experience, in that it recreates as faithfully as possible all the factors that come to play in shooting that tiny white ball.";
fDesc[4] = "card games such as Spider, Freecell, etc. And you will be able to learn solitaires not found elsewhere.";
fDesc[5] = "power-ups and go through the 18 challenging holes, collect as many points as you can, and unlock new characters to have more fun!";
fDesc[6] = "shots, that way you can increase your score and become better for the game. This application has a nice looking interface which makes it easy for you to follow instructions and see what you must do in order to pass, and go on to the next yard court.";
fDesc[7] = ", awareness, self confidence and concentration, speed, while playing and having fun. It provides 101 games divided in 3 main groups: There are games for children ages 3 to 6, games for kids ages 6 to 8 and games for kids ages 8 to 12. It runs under Windows 98, ME, and XP operating systems.";
fDesc[8] = "collection features twelve popular card games including Silver Klondike, Pyramid golf, Freecell, Fourteen Out, Four Seasons, Yukon, Clanfield, Blind Alleys, and many others.";
fDesc[9] = "collection consists of thirteen popular card games which are absolutely fun and addictive. The full version of the game can be tried out for five hours.";
fDesc[10] = "In this menu we can select the games, and before playing it, we can see some data about the game. The available game data in the main menu is: Time to play (short, medium, long), Difficulty (easy, medium, hard), Win chance (low, medium, high,...), Requirements (luck, skill, ...).";
fDesc[11] = "FreeCell, Pyramid, Golf, Busy Aces, Canfield, Forty Thieves, Four Seasons, Carpet, Flower Garden, Rouge et Noir, Monte Carlo... and original solitaires that you cannot find elsewhere.";
fDesc[12] = "existence of different items that enhance the game. For example, in the first stage there is a cannon. We must lead the golf ball to a hole near the cannon, and then we can aim the cannon and shoot the ball towards the hole.";
fDesc[13] = "great game to use. With locations ranging from the Scottish highlands to exotic forests this new card game is sure to excite. You will get to experience 70 unique courses in beautiful locations. Pick your own golfer and enjoy realistic golf commentary, entertaining wild shot cards, and 3 fun mini-games.";
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 = '...';
}
}