var fDesc=new Array(); fDesc[0] = "Insatia is a carnivorous worm simulator in a dark atmosphere. You guide your worm as it devours everything it sees. You can also fight other worms and hunt for prey; each worm with its own unique behavior. Your worm can swallow anything that fits in its mouth, including parts of other worms. The more you eat, the more you grow, until you are able to consume everything in your path."; 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 = ''; } }