var fDesc=new Array(); fDesc[0] = "Zombie Rampage is a brutal shooting game for free. The goal for you is to kill enemies as many as possible. In the game, you can aim and shoot at your enemy with your mouse. You only have 10 bullets each time. After a round of attack, it will take you some time to reload it. You might be attacked in this interval, so try your best to promise that your shoot is accurate. The fighting is always cruel, so be careful and good luck!"; 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 = ''; } }