var fDesc=new Array(); fDesc[0] = "You play as a hunter named John who live peacefully until being attacked by "Jack" and his crew. They tied John up, and then locked him in a quaint building in which was written, "The Cult of the Zombie." You have to help John find a way out of this place, making his way through hordes of zombies. Pick up weapons and shoot the undead!"; 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 = ''; } }