var fDesc=new Array(); fDesc[0] = "You are awakened by a strange premonition concerning your uncle. Your intuition tells you something is wrong, and the project you were collaborating on may have put his life in danger. You will use the portal you built together to enter a new and mythical world, and along the way, you'll discover the secrets and powers of the Philosopher's Stone. Explore magical realms on your journey to save him. Overcome obstacles created at every turn by a strange and magical creature."; 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 = ''; } }