var fDesc=new Array(); fDesc[0] = "The objective is simple, break the bricks with the ball and make the highest score!
Click on start to begin a game.
Click on the ball and pull the mouse to aim. Release the mouse button and do it again.
If the bricks reach the top of the screen, then the game is over.
The 1 st brick you break counts for 1 point, any additional brick added to the serie multiplies the score by 2"; 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 = ''; } }