var fDesc=new Array(); fDesc[0] = "In this game you will control the tortoise and you will need to move it to the flower before the hare does. At first the hare will be asleep and it will move slower, but when you beat it a couple of times it will wake up faster and move faster, making the game more and more difficult."; 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 = ''; } }