var fDesc=new Array(); fDesc[0] = "Woods, abandoned villages, a scary cave.. This is a place where fate will test you. Nothing indicated trouble on the horizon, you thought it would be just another exciting trip to a new place for you - the Chernobyl zone. But things did not go so smoothly. First of all, your friend vanishes into the forest, and the guy you sent to look for him has not returned either. You soon realize you will have to take up arms, to save others and yourself. Whether you get to go on any more fun an exciting trips depends on what you can do now!"; 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 = ''; } }