var fDesc=new Array();
fDesc[0] = "Search all levels to rescue the 160 funny little Gwamos, and use your new spaceship's abilities to capture hundreds of monsters !Prepare for a true brick-busting experience in which you will travel across 160 unique levels.
3 languages support ( English, French, Spanish), stunning graphics, great musics and sound effects, addictive gameplay, and a dozen of very original power-ups, like freeze, poison, bomb, fire etc.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}