var fDesc=new Array(); fDesc[0] = "An ancient temple arose right out of the ground, it's a miracle! It hovers in the air, delighting all in its majesty. What does conceal within its walls? Perhaps the greatest knowledge of our ancestors, and perhaps the future of technology left to us from the past? I am Anna the archaeologist, and my goal is to explore the temple. At the temple out of thin air there were some crystals, and probably they are the key to unlock the temple .."; 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 = ''; } }