var fDesc=new Array();
fDesc[0] = "Face more than 50 different enemies and six massive bosses throughout 30 levels of intense action, your arsenal includes 10 upgradeable weapons, 10 powerful missiles and power-ups that tip the odds of survival in your favor.
You must navigate one of 12 ships across a scrolling 3D combat zone and unleash its guns upon an unrelenting stream of aggressors , to save mankind. Hostile aliens pursue the human race across the galaxy to deliver a devastating final blow.";
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 = '';
}
}