var fDesc=new Array(); fDesc[0] = "Wilkanoid is a simple breakout game where you should keep the ball from falling down. You need to collect crystals by aiming balls at them using the paddle. The object of the game is to crush all Crystals in each level with the Ball. The Ball gets destroyed if it get to the bottom of the screen so to prevent this you must bounce the Ball upwards using the Paddle."; 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 = ''; } }