var fDesc=new Array();
fDesc[1] = "the three games is to collect as much money as we can, so that the money meter reaches the highest position and we move on to the next level. Each game features three levels of difficulties: easy, normal, and hard.";
fDesc[3] = "the game board so that the numbers 1 through 9 occur exactly once in each row, column, and 3x3 box. Your goal is to fill in the empty squares following the simple rule above.";
fDesc[4] = "music, dancing with your fingers, tapping on the keyboard movement keys. Using the beatbox feature you can record your own music to use it later to play the game with it.";
fDesc[5] = "bowling you score points by rolling a bowling ball along a flat surface called the lane into objects called pins. The variant used by this game is the 10-pin bowling.";
fDesc[6] = "things, you grow, and become able to eat bigger fishes, provided they are smaller than you. You can join your counterparts from all over the world through Internet and beat your best score.";
fDesc[7] = "detachments of the terrorists. You are located in the trench and have weapons at your disposal. Fight for the world peace";
fDesc[8] = ", the background will turn from lead to gold, and every rune will disappear, awarding you points. You can then place more runes over those empty spaces.";
fDesc[9] = ", including small fish and large sharks. Your objective is to catch as much fish as time allows you. Join your counterparts!";
fDesc[10] = "much fun! There are three ways to play: solitaire, vs. the computer and with friends. You could also choose Triple Yahtzee, where you have three chances to improve your scores.";
fDesc[11] = "effects, splendid graphics and many fantastic routes will not leave you indifferent.";
fDesc[12] = "developer’s website. It is a quite basic game where our main goal is to get the keys, which open the cages where the naughty hunter keeps the monkey’s friends. We must destroy as many blocks as possible to get to the next level.";
fDesc[13] = "get the better score, against the computer or against up to five other players. The program allows you to pick an avatar for each player, including the computer.";
fDesc[14] = "world by removing mines and destroying monsters! Download Bomb Threat and Play for Free!";
fDesc[15] = "scanner or open an already existing image file (TIFF, BMP, PDF, and others), and the program will accurately recognize all the elements that conform the score, including multiple voices, accidentals, cue notes, grace notes, ties, slurs, and many more.";
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 = '...';
}
}