var fDesc=new Array();
fDesc[1] = "to catch enemies inside. After that you should jump on bubble with an enemy trapped inside and pop them!";
fDesc[2] = "Nostalgie, Arkanoid The Virtual Isles and Brave Dwarves.";
fDesc[3] = "dynamic, vivid and surely beautiful game appeared. The nice-looking dinosaurs set out on a magical quest. And that's the quest for fire!";
fDesc[4] = "catch enemies inside. After that you should jump on bubble with an enemy trapped inside and pop them! To increase your score pick up items: fruits, vegetables, diamonds, jewels etc. You can also pick up some items to make your journey easy.";
fDesc[6] = "graphics with transparency and particles effects, new music and sound. You will face new monsters like spiders, wizards, batiks...";
fDesc[7] = "Dragons Adventure, an exciting game very similar to the famous Bubble Bobble. You will find a lot of fun and many different tricks through its 150 levels, so I'm sure you will spend many hours at your PC with this amazing game.";
fDesc[8] = "eliminate all obstacles if you want to advance to the next level. There are about 100 levels to achieve, therefore there's a lot of fun, totally guaranteed, on this simple game.";
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 = '...';
}
}