var fDesc=new Array();
fDesc[1] = "choose from a great variety of solitaire games, from the challenging Scorpion to a relaxing game such as classic solitaire.";
fDesc[2] = "When clicking on a group of 3 or more same-colored bricks, the whole group disappears, and the hole is filled first by the elements falling from above. If a column is cleared, the elements move to the center of the field.";
fDesc[3] = "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[4] = "choosing a ball you wish to place in an adjacent place, and click over that place. The balls will change positions, and if they complete a row of three or more balls with the same color, the row will be cleared. You can´t move the black balls.";
fDesc[5] = "desired difficult level. The harder the level, the smaller the pieces. You can go from a very easy 4 pieces puzzle to a very hard 442 pieces puzzle.";
fDesc[6] = "computer. You can even choose your computer opponent´s ability. You can choose the ball you want to hit, and the program will help you showing lines with the path the ball will take when hit.";
fDesc[7] = "the most popular games in history even more fun to play. Simply match tiles in pairs to eliminate them from the board. But be careful, remove the wrong tile and be stuck without a move.";
fDesc[8] = ", and then in another one, to swap its positions and form words. You can play in Action (timed) or Puzzle (untimed) mode.";
fDesc[9] = "the game is to arrange the different types of candies into rows in order to crunch them away. Different candies will give you different points. Once you complete the required number of rows in time you will jump to the next level…";
fDesc[10] = "will also get Super Fast Reboot, and in less than a second your computer it is going to be in the rebooting process. But don’t expect this utility to save your files for you, it will only work as it is programmed, to shut it down!";
fDesc[11] = "Blackjack. They differ mainly in the amounts of the bets. Barroom´s bets go from $1 minimum to $200 maximum, while Vegas´ bets go between $100 minimum to $1000 maximum.";
fDesc[12] = "same color, vertically or horizontally, to make them disappear from the board. In order to get to the next level you will have to make a certain number of matches";
fDesc[13] = "is fun, non violent, and all family members can play it. With visually attractive graphics, this game guarantees fun for gamers of all ages.";
fDesc[14] = "playing slot machines but without risking your money. With Super 5-Line Slots, you will have four different slot machines in your computer with different themes, to play at any moment and feel as if you were in a real casino.";
fDesc[15] = "excellent 2D game very similar to the famous plumber game, but where Tux (Linux's pet) is the main character. Definitely, SuperTux is a game for both, adults who want to remember their childhood and children alike.";
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 = '...';
}
}