var fDesc=new Array();
fDesc[1] = "You will have a board full of colored gems. You need to swap identical gems .Swap adjacent gems to make sets of three. If you have the option of swapping four gems that will create a power gem that, when swapping it too, will give you extra points.";
fDesc[2] = "relaxing fun! Enjoy frantic timed modes and puzzle over relaxing brain teasers. Collapse! II is one of our most addictive and popular games.";
fDesc[3] = "very well-known format. The game consists in getting more than three balls of the same color together, once you do that all of the balls with the same color will disappear, but hurry up, because they will all go down, and when they touch the floor you will have lost the game.";
fDesc[4] = ", and then in another one, to swap its positions and form words. You can play in Action (timed) or Puzzle (untimed) mode.";
fDesc[5] = "customizations to suit your needs, including timed capture, capture Hotkey, Saving to File directly or to Clipboard, capturing a region,active window or full screen it has all the basic required features.";
fDesc[6] = "to do is create matches on the board by placing the pieces you get from the game. On the top of the screen, you’ll be seeing the next three or four pieces to come, so you can anticipate your movements.";
fDesc[7] = "through 70 levels. With stunning graphics, amazing animations and 3 game modes, Rainbow Mystery is bursting with fun!";
fDesc[8] = "This software teaches us how to type without looking at the keyboard. It features three levels, beginner, medium and advanced, so we can start learning from zero or just training our fingers for a faster typing.";
fDesc[9] = "graphics and a nice music, which make you believe you are at a bar playing pool. It includes many playing modes: Practice, Eight-ball and Nine-ball modes, and two challenge timed modes in which you have to put all the balls in the pockets quickly.";
fDesc[10] = "or more same-colored blocks to remove them from the board. Bonus points will be earned for forming flowers and other special combinations. Hexic Deluxe can be played in three different modes: Marathon, Timed and Survival.";
fDesc[11] = "can be used: at a certain time, after a time countdown, when the CPU usage goes down or when you get disconnected from the internet.";
fDesc[12] = "out of boxes! Align dazzling colorful jewels to break them out of their sturdy gold boxes. This mesmerizing game will make you a hammer-wielding, jewel-smashing enthusiast before you know it. Features 150 levels of jewel matching madness!";
fDesc[13] = "same colour. This can be done by shifting a jewel with any of the others that surround it. Bejeweled also have 2 game modes: Normal Mode and Time mode.";
fDesc[14] = "suit its colorful graphics automatically, when it was launched. The bright, cheerful interface offers easy navigation and there is a choice of three game modes - Timed, Untimed, and Endless.";
fDesc[15] = "reverse! That is to say, you are given the words, but what you need is to find the right place to make them fit in the crossword. Word Cross is really fun and addictive, and crossword fans will love it.";
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 = '...';
}
}