var fDesc=new Array();
fDesc[1] = "that is set in a teamplay, you can choose to be a terrorist or a counter-terrorist. Warning: this great game is very addictive! You’ll download it in a few minutes and you’ll be playing it in less!";
fDesc[2] = "Berlin Wall hadn't fallen? Well, we would be living in a quite different world. That is what the game is all about. The Berlin Wall didn't fall and the Soviet army kept on getting more and more powerful.";
fDesc[3] = "into a single category, because the game is so rich that it would not be fair to do that. This masterpiece puts you in command of an army of worms who have a variety of weapons. The goal is simple: kill all the worms from the other teams before they kill you.";
fDesc[4] = "robots. If they touch you, you die. Your only weapon are bombs that you can leave behind. When they explode, they destroy everything in the near: walls, robots... or yourself, so be sure to be far from the explosions.";
fDesc[5] = "sessions. The Bomb Factory BF76 (formerly, Bomb Factory 1176) offers you the world-class compressor/limiter capabilities of the classic 1176 Peak Limiter, while the BF Essentials provide a set of time-saving, trouble-solving, mixing studio utilities";
fDesc[6] = "they travel. Quad Missile - Four small missiles release at a distance, then home in. Carpet Bomb - Difficult to miss at a distance, very powerful with line-of-sight.";
fDesc[7] = "first time ever were nuclear bombs available for you to use in a video game. That was what sold the game back then. Fear, I would say. The game features one of the most advanced aircraft ever created, the F-22.";
fDesc[8] = "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[9] = "practice for homing missiles. Power Washer - Powerful stream of water targets your opponent. Cheap Shot - Teleports a bomb directly on top of the other tank. Blackout - Neigh invisible bullet that shrouds area with darkness.";
fDesc[10] = "world by removing mines and destroying monsters! Download Bomb Threat and Play for Free!";
fDesc[11] = "pocket every ball before they all explode. That´s because they are not balls, they´re bombs, and they will begin a 120 seconds countdown till they burst. If any of that bomb is still on the table when the counter reaches zero, there will be an explosion, and the game will be over.";
fDesc[12] = "zagging weapon that is one part skill and two parts luck; Chalk Dust - Calcium bicarbonate has never been so much fun; Mower - Cuts terrain and any nearby tanks down to size; Dive Bomb - Warhead does a bombing run on the other tank.";
fDesc[13] = "three cubes of the same color and remove them from the board. Clear the board quickly using all-new power-ups like Ghost, Bomb and Dual cubes to help you. Don't be a square -- play Cubis 2 today!";
fDesc[14] = "save the world by removing mines and destroying monsters! Download Bomb John and Play for Free!";
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 = '...';
}
}