var fDesc=new Array(); fDesc[0] = "In this game you will use a racket to hit a ball repeatedly and try to keep it in the air. There are 3 levels in this game, the level 1 is tennis, level 2 is table tennis, level 3 is golf. Use the mouse to control the racket, the further the ball is from the centre of the racket when it is hit, the further it will bounce away from the racket."; 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 = ''; } }