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[2] = "cannons or puting your enemies into a collisions with a reef. With all your enemy ships cleared, you will advance to the next level. The game has an introductory tutorial that will explain you briefly how to play Seven Seas.";
fDesc[3] = "variety of different arrangements to play, organized into what is called “levels”. With a wonderful underwater look interface and a warm music you enter into a welcoming atmosphere while playing this game, achieving its main goal: entertaining you.";
fDesc[4] = "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[5] = "powerful as the Nuke. Pillow Fight: Direct damage on impact, with exploding feathers for splash damage. Sink and Swim: The enemy tank 'sinks' into a hole, as hail showers them from above.";
fDesc[6] = "his boat when all of a sudden three aliens sink his boat to the bottom of the ocean and tell him they need his help finding the Pearl of Poseidon.";
fDesc[7] = "incarnation of the classic board game with some interesting variations. Battleship is the classic game of naval strategy. You will take turns trying to find your opponent’s fleet and blast them out of the water.";
fDesc[8] = "for FREE!";
fDesc[9] = "in your path before Sharksword and his pirates sink your ship! Collect all the dazzling treasures of the oceans, and meet a zany cast of characters on this colorful swashbuckler's quest.";
fDesc[11] = "you to sink enemy ships. First, a tap on your ship icon will result in a broadside being fired from both sides of your ship. The enemy can not fire broadsides and the only way for you to be sunk is by colliding with their ship, an island, or a sea monster.";
fDesc[13] = ", Destroyers, Corvettes. Your mission is to sink the enemy";
fDesc[14] = "changes to web sites.";
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 = '...';
}
}