var fDesc=new Array(); fDesc[0] = "The Mystery of a Lost Planet is a hidden object game. You play as the part of a crew who had a crash landing on the lost planet. You’re left with many unanswered questions: what was the mysterious force that seems to have pulled your ship into the planet and what are its intentions. Only you can solve this secret and get your crew back to 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 = ''; } }