var fDesc=new Array();
fDesc[0] = "SupaBlast Classic Lite Edition is a 3D remake of the '80s classic games. Not just another Invaders / Galaga clone - it has a lot of unique level variation, smooth animation and clean graphics style. It features full hardware 3D acceleration with cool sound- and particle-fx.
Features:
- Clean graphics and smooth animation
- Cool music & sound fx
- 50 unique action packed levels (20 levels in Lite Edition)
- Weapon & Health upgrade
- Friendly controls, just start and play
- Set your own records and compete with other players!";
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 = '';
}
}