var fDesc=new Array();
fDesc[0] = "You have to fight against a cyborg army which prepares to launch an invasion unheard-of in history. Make use of enemy weaponry, find vulnerable spots of colossal command ships, take control of enemy teleportation system - defend the human race by any available means.
Main features:
- Mind-blowing 3D graphics and beautiful soundtrack.
- Up-to-date adaptation of classic Invaders arcade gameplay elements.
- Lots of cyborg modifications, extra-weapons and special abilities.
- 11 stages with unique hard-to-defeat boss ships";
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 = '';
}
}