var fDesc=new Array(); fDesc[0] = "It's Halloween night! A noisy party of masked and costumed people, drinking, joking and laughing. But THIS night, it's not going to be like that. Imagine you are far from home. You are alone in an eerie castle. Strange things happen here. Windows barred from inside, an old family picture with faces turning into skulls before your eyes and an empty grave in the hall with a tomb stone at the head of it make your blood creep. The creepy atmosphere of mysticism is intensified with restless ghosts, floating about under the full moon. This ominous place is waiting for you. Why miss a chance to test your guts in practice?"; 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 = ''; } }