var fDesc=new Array(); fDesc[0] = "The protagonist wakes up in the hospital and cannot remember who he is and what happened. Something horrible has happened there and he must figure out a way to escape from the hospital. Use the mouse to point and click. Press Shift to go into shooting mode. Press Ctrl to turn on the flashlight."; 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 = ''; } }