var fDesc=new Array(); fDesc[0] = "DarkLight Dungeon is a role playing game set in a 3D dungeon featuring 2D turn based combat.
You awaken to find yourself in a dungeon with no recollection of how or why you are there! You will have to explore this vast dungeon to find the answers; pushing your way through teleportals, traps, puzzles, locked doors, secret messages and a large array of evil creatures."; 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 = ''; } }