var fDesc=new Array(); fDesc[0] = "The ominous Labyrinth is waiting for you. Can your character (it's you) pass all this way, avoid the dangerous traps, break through the hordes of monsters-guards and defeat the Master of Labyrinth?

The Labyrinth and locations of traps are generated randomly.

Details:
- Four kinds of enemies + main boss, the Master
- Three kinds of weapon
- Two levels + final battle"; 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 = ''; } }