var fDesc=new Array(); fDesc[0] = "In this game there is a grid of blocks, you need to destroy the grids by clicking groups that have at least 3 same coloured bricks. If you can destroy a group with at least 15 bricks, then you will be awarded a bomb. Click the bomb to destroy all nearby bricks. You need to work fast, because new rows of bricks will be added constantly."; 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 = ''; } }