var fDesc=new Array(); fDesc[0] = "The objective of the unknown aliens is absolutely clear: they're building an army to conquer the Earth! So people are sending a small spaceship to the Red planet with one mission: blow up the shield generator so they can launch missile attacks from the orbit. The spaceship will have to land in an isolated area, and then try to infiltrate into the alien conspiracy. You are the commander of the spaceship, and the fate of the Earth is in your hands!"; 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 = ''; } }