var fDesc=new Array();
fDesc[0] = "If you want to play a 'quick' game with your friends and family without all the messy details, this is the game for you.
Fireball: Super DX-Ball's Fireball power-up makes a cross-over amazing appearance.
Flea Circus: Lots of 'flea' bots hop around looking for a reason to explode.
Super Star: Flying star explodes into 3 pieces then orbits and fires at tank.
Drillers: Multiple warheads become awesome homing missiles when underground.
Gamma Blaster: Magnetized gamma radiation particles fly through air and terrain.";
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 = '';
}
}