var fDesc=new Array(); fDesc[0] = "Fight the enemies coming your way and defend the Earth from total destruction. Move your ship using your mouse and fire weapons with left and right mouse buttons.

Pick up bonuses that will help you fight them. But watch out, you have only 44 seconds to defend the Earth."; 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 = ''; } }