var fDesc=new Array(); fDesc[0] = "Travel to the mysterious Cursed Valley to reveal the pages of the Magicians Handbook, and remove the curse that has long haunted the valley. Set out with your trusty wand in hand to find enchanted objects hidden throughout the valley that will help you to break the evil spell. Ward off the shadow and other distracters of light, using incantations that you learn along the way. Can you remove the curse from the valley and rediscover its true name?"; 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 = ''; } }