var fDesc=new Array(); fDesc[0] = "The Wall is a fast paced puzzle game in which your goal is to make the bouncing ball hit the bomb before time runs out. You can click on empty tiles to add bricks to the wall and so to redirect the ball towards the bomb. You need to plan your strategy carefully and to act fast."; 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 = ''; } }