var fDesc=new Array(); fDesc[0] = "The purpose of the game is to remove as many bricks from the board as possible to prevent these bricks from filling the entire game screen. Click at the group of three or more bricks of the same color and they will disappear. When bricks fill the entire game screen the game is over. Each further level demands you to be faster and faster. So be attentive, quite accurate and as fast as you can. Larger groupings mean more points and very large groupings earn bonuses to compound your score even further."; 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 = ''; } }