var fDesc=new Array(); fDesc[0] = "Welcome to the Wizard's Pen, where the Wizard has vanished, and only you can find him in this magical seek-and-find game! The clues to the Wizard's whereabouts are in his workbook, but all the images are hidden. You'll need his magic pen to uncover and guess hundreds of images. Plus, you can play mystical mini-games, score bonus points and earn potent potions. The Wizard's Pen is spellbinding fun!"; 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 = ''; } }