var fDesc=new Array(); fDesc[0] = "A remake of a classic arcade game, with a touch of strategy. Level after level, your task is easy: collect all the green balls, or GLUGONS, and escape from the bad guys that will try to catch you.

Each level will propose an ascending kind of difficulty, with less space available, more glugons to collect and less protective areas from the bad guys. The first two levels are easy, just to familiarise with the game; the third and fourth ones will present certain difficulties"; 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 = ''; } }