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] = "saga, in this case, you are going back to the ancient Persia. Like in the other games you will climb walls, jump, and do all kind of incredible movements.";
fDesc[3] = "game for people who have visual memory. It is one of the most addicting games ever. Once you start playing, you simply can't stop. It has colorful graphics and suspenseful music and sound effects. It is user friendly, and the instructions are clear and easy to understand.";
fDesc[4] = "game of historical empire building in which the player builds an empire from scratch. All full-time standard game starts in 4000 BC with a single settler, to build the first city, and an explorer or a warrior.";
fDesc[5] = "and the instruction are clear and easy to understand. An old diary has been discovered. The problem is that most of its pages have been torn out. You must find the missing objects in the different rooms to unlock their doors and retrieve the missing diary pages.";
fDesc[6] = "aliens that are threatening the Earth. As you complete missions you get money to buy new and more powerful weapons, and be able to fight toughter aliens each stage.";
fDesc[7] = "transport passengers around a city, adjusted to a timetable on a planned route, obeying traffic rules, and taking care not to upset or injure your passengers.";
fDesc[8] = "invites the player to form words out of them. All the levels and supplied letters are good for creating known words. The game takes care of the truthfulness: there always are words that can be created using the displayed letters.";
fDesc[9] = "off for fun with Airport Mania! Land planes, unload, and return to the skies in 8 amusing airports. Avoid delays, keep your planes in good repair, and get to the gate on time to keep things running smoothly.";
fDesc[10] = "to this great saga. This time, the Prince of Persia, decides to go back in time, to kill a creature called Dahaka, which is like a black hole, eats everything in its way.";
fDesc[11] = "explosions. You have to join the same kind of jewels, as you do it, they will explode and in that way you will reach points. You will find a lot of precious stone such as ruby, emerald,amber and so on.";
fDesc[12] = "quality and variety reach a level never seen before. Cars, computer chips and game modes come together in a way which brought together all the good stuff of racing games. TOCA has come to the city...";
fDesc[13] = ", throughout most of the game, it fails to bring anything new to the world of FPSs. The graphics are nice-looking; the world is depicted with careful regard to realism.";
fDesc[14] = "saga. As you probably know, with this game you are going to travel to the ancient Persia, a land of adventure and magic.";
fDesc[15] = "him that some of the ghosts that Mortimer had evicted in the past, came through a portal. There are 9 anomalies scattered through time and space, and Mortimer must do something to prevent a Time Paradox.";
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 = '...';
}
}