var fDesc=new Array(); fDesc[0] = "Exploring the remains of an ancient city where you discover a secret door that leads you into a room with a mysterious artifact. You can't help but take the artifact from the pedestal, and there's no escape now. You must pass through the labyrinth, paving the way, and battle with the Guardians of the dungeons so as not to remain an eternal captive of the ancient tombs. Use the ancient weapon, Egyptoid, to help you break free from the tombs."; 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 = ''; } }