var fDesc=new Array();
fDesc[1] = "that needs to eat smaller fishes to grow up; likewise, we get points, bonuses, and pass on to next levels. The game becomes more and more interesting (and difficult) as we grow bigger and get to eat our old enemies.";
fDesc[2] = "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[3] = "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[4] = "everyone.";
fDesc[5] = "game types, including fast action and slower, turn-based modes, there's never a shortage of dino fun!";
fDesc[6] = "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[7] = "have to sort the similar colors together in order to get an atomic reaction. Atomica has two modes of game-play, a strategic turn-based mode and a fast-paced real time mode. This game will definitely take up some of your time if you play it.";
fDesc[8] = ", including small fish and large sharks. Your objective is to catch as much fish as time allows you. Join your counterparts!";
fDesc[9] = "get Slingos (5 matches in a row). What you see in the screen is a combination of a slot machine and a bingo’s card. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[10] = "the games available, Patience shows the proper rules and maintains statistics and high score tables. You can customize the playing environment by choosing the game layout, backgrounds, card decks, card drop, sounds and animations";
fDesc[11] = "disappear, and you will pass over to another level.";
fDesc[12] = "games. CUBIS Gold's unique 3D board engages the player with colorful cubes that must be removed against the clock by matching three or more in a row, vertically or horizontally, not diagonally.";
fDesc[13] = "professionals due to the high performance. This software has seven filters the 12 or 24 dB/oct low cut and high cut filters, low shelf and high shelf filters, low mid and middle and high mid peaking filters with adjustable frequency and Q factor over a wide range.";
fDesc[14] = "on matching tiles and pave your way to eternal fame in the high score. Choose between Classic or Arcade, three difficulty levels, three different tile sets and 28 lay outs!";
fDesc[15] = "will need concentration, logic, quick reactions, and a good keyboard command. Most importantly, Biniax 2 has a freeware license so you can enjoy it without restrictions.";
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 = '...';
}
}