var fDesc=new Array(); fDesc[0] = "In the heat of the alien attack invasion your spaceship was taken by surprise.

You are surrounded by immense fleet of alien spaceships. They are in possession of special alien jetfighter technology, they have attack mode drones and their mothership is equipped with state of the art alien laser technology capable of slicing you into pieces.

Your strengths are maneuverability and fast shooting mode. Still you are over numbered."; 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 = ''; } }