var fDesc=new Array(); fDesc[0] = "Don’t Touch the Border is a simple game: you need to move a small ball, but it must not touch the border. It is a simple and fast game that will test your skills and your patience. You must go as far as possible and get the best score. There are 3 levels of play: easy, normal, and super hard."; 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 = ''; } }