var fDesc=new Array(); fDesc[0] = "A plague is raging everywhere. You arrived at one of the remote castles to find out how the epidemic is going. It turns out, besides the plague, another problem fell upon the castle. The walking dead attack the castle at night. You decide to help residents and protect the castle from enemy attacks. Kill the dead and earn points. For points, you can buy more powerful weapons and health potions.

A plague is raging everywhere. You arrived at one of the remote castles to find out how the epidemic is going. It turns out, besides the plague, another problem fell upon the castle. The walking dead attack the castle at night. You decide to help residents and protect the castle from enemy attacks. Kill the dead and earn points. For points, you can buy more powerful weapons and health potions."; 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 = ''; } }