var fDesc=new Array(); fDesc[0] = "Take a trip with Sarah to the Castle of Witchcraft and Wizardry and pay a visit to the ghost's Deathday party in the dungeon. Pop into the kitchen for a chat with the sometimes helpful House-Elf. Slide down a pipe for a spot of spelunking in the chamber of secrets, try to hide from the cranky caretaker, pick up plenty of coins to buy sweets at the sweet shop, spend some time in the library learning new spells,and finally, hold on tight as you fly on a broom trying to catch the golden snitch."; 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 = ''; } }