var fDesc=new Array();
fDesc[1] = "make the cold winter stay forever. Your task will be to find the pieces of the broken mirror, put them together and beat the Snow Queen.";
fDesc[2] = "fans of word games. Including the amazing “Boggle Blast” mode, Boggle Supreme has been packed with lots of great features such as a new computer player called Betty who will teach you the game and also challenge you!";
fDesc[3] = "action-packed 3d blast along roads filled with enemy agents - but also with innocent civilians that you should protect at all costs.";
fDesc[4] = "and fun as ever. Playing Scrabble is really fun and easy, apart from being educational and suitable for all family members. You will never get tired of playing Scrabble Blast!";
fDesc[5] = "bombs, missiles, and other powerful bonuses. Classic, Survival, and Puzzle modes provide hours of insanely addictive play.";
fDesc[6] = "screen. In this game you must move fast and grab a ball from the chain to shoot it back and place it in groups of identical colors in order to destroy them all.";
fDesc[8] = "in your path before Sharksword and his pirates sink your ship! Collect all the dazzling treasures of the oceans, and meet a zany cast of characters on this colorful swashbuckler's quest.";
fDesc[9] = "the magic and misteious world of Egypt, your task will be to uncover ancient drawings on stones, while racing against time. Puzzle Blast is perfect for all types of gamers and suitable for all ages.";
fDesc[10] = "There are gems with special abilities: joker gems, filler gems, rockets, grenades and indestructible gems. The game modes are time gems, classic gems, tactical and puzzle mode.";
fDesc[11] = "we throw projectiles at them, we have to change position quickly and try not to be hit by any of the flying bombs that the politicians are continuously throwing back at us. We can select the politicians we dislike most to fight them only.";
fDesc[12] = "play any of these four games: Asteroids Classic, Asteroids Retro, Astro Hunter 3D Deluxe and Astro Blast Extreme. The four games have a high score table, easy-to-use interface, and many customizable options. We can evaluate this collection free of charge.";
fDesc[13] = "beach balls, tennis balls, and shotguns, but watch out for falling gulls and gull bombs.";
fDesc[14] = "You will have hours of fun playing over 50 uniquely challenging levels.";
fDesc[15] = "His sentence will be performed publicly in an intergalactic circus where he could be executed by a device called the Blast Zone. Your challenge in the game is to take on the role of D-Tox, save him from death and help him to escape";
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 = '...';
}
}