var fDesc=new Array(); fDesc[0] = "This is a Breakout game with Ben10 as its main character. Ben10 is running after your mouse cursor in the bottom of the screen and needs to bounce the ball. When the ball breaks bricks, bonuses are dropped.

Some of these bonuses convert Ben10 into different aliens. Some aliens are wider, others are faster and some can shoot.

Click the mouse button when you are a shooting alien to destroy more bricks."; 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 = ''; } }