var fDesc=new Array(); fDesc[0] = "In this game, the player control the ball movement by using the ←↓↑→ arrows keys on the keyboard. Guide the ball to the exit without colliding with any walls. The goal of the game is to reach the exit within time limit.
You can also download this game and install it in your computer so that you can play it simply by clicking an icon on your desktop."; 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 = ''; } }