var fDesc=new Array(); fDesc[0] = "A little over a year ago, in a secret laboratory, a deadly virus escaped from an underground bunker, quickly sweeping the entire planet and turning people into terrible bloodthirsty zombies. Dangerous and fast, cunning and strong monsters are not afraid of pain, death and have one goal: to kill. Kill all living things in your path. The surviving people hid underground and try to survive. Only the virus has penetrated here as well. It will not be possible to hide now. It is necessary to destroy the spread of the infection."; 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 = ''; } }