var fDesc=new Array(); fDesc[0] = "In this game you take the role as a young girl whose task it is to seek the most inner chamber of “the Cave of no Return”. Her cause is clouded by mystery, but yet you are there to help her.

The girl will run automatically from left to right, but as obstacles appear in the cave you need to dodge them. The high score list can be viewed manually from the title screen, but will also appear after the game is over. If you fail inside the cave, press left to be taken to the high scores, and press left again to retry from the beginning."; 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 = ''; } }