var fDesc=new Array(); fDesc[0] = "Project Zomboid is a zombie survival game. Alone or in multiplayer mode, you loot, build, craft, fight, farm, and fish in a struggle to survive. It features a vast and growing map (loosely based on a real world location) for you to explore, loot, and set up your fortress."; 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 = ''; } }