var fDesc=new Array(); fDesc[0] = "The basic gameplay consists of shooting a coloured bazooka at some coloured blocks. If the colours match, then the block is destroyed, along with all connecting blocks of the same colour. If the colours do not match, then the weapon colour 'splats' onto the block you hit, plus those immediately surrounding it."; 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 = ''; } }