var fDesc=new Array(); fDesc[0] = "In this game you control the hero ship by clicking anywhere in the playing area, making it dash towards your waypoint. The basic idea is to survive, while collecting gems along the way. Thing is, you probably won't survive very long, as there's a giant monster at the top of the screen who is constantly spurting out bullets."; 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 = ''; } }