var fDesc=new Array(); fDesc[0] = "You are Blob and your world is falling apart around you! Run as fast as you can for as long as you can while avoiding all the pits, saws and falling spike blocks in your path. Don't slow down though, or the ground may disappear beneath your feet."; 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 = ''; } }