var fDesc=new Array();
fDesc[1] = "explode all the bubbles before they overflow the board. It combines the best from Tetris, Lines, Pool adding new features.";
fDesc[2] = "game with four game modes and four skill levels. Enjoy improved graphics with lots of new features all your free time.";
fDesc[3] = "come together, and remaining bubbles move up to fill the gap. More explosions - more points, no explosion - balls advance.";
fDesc[4] = "Which means you can host your website on your PC rather than looking for those free host or paying your web hosting company.";
fDesc[5] = "to gain points. The basic interface displays a board full of colorful bubbles; these bubbles have to be cleared in three or more than three in number for scoring maximum points.";
fDesc[6] = "entirely absorb you. You are welcome to have fun with gems. But this time in the open space!";
fDesc[7] = "way. The Review Words window will pop up showing a Russian word, its pronunciation (by a native speaker), and its meaning. There many types of exercises to practice our Russian skills.";
fDesc[8] = "crubs will try to kill you. Some kind of fish is immortal for your gun. Game is free to download and play!";
fDesc[12] = "with 3 skill levels. Become Master of the COSMOS. Check out your pilot skills driving multiple saucers through the deep space";
fDesc[13] = "reputation. Regular download or flash versions and depositing in different currencies. Best of all - it's ALL FREE!";
fDesc[15] = "format. AVI files then can be played in Windows Media Player or other standard multimedia player.";
fDesc[19] = "simple rules and four modes: strategy, arcade, sniper and marathon. Your goal is to explode all the bubbles before they overflow the board.";
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 = '...';
}
}