var fDesc=new Array(); fDesc[0] = "AstroDude is an astronaut in an orange suit, who was forced to make an emergency landing on the planet "N" due to the fact that the spacecraft, which was supposed to get him home, broke down.
This planet suffered an environmental disaster in the past and has no oxygen. Therefore supplies of oxygen have to be constantly replenished. AstroDude can lift and carry various objects (boxes, etc.).
With their help, he will be able to overcome all obstacles.
Help AstroDude find spare parts to repair the ship as soon as possible and go home."; 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 = ''; } }