var fDesc=new Array(); fDesc[0] = "Bomb Squad is a game with 5 bombs hidden in a 8x8 grid. The goal of the game is to find and locate all these hidden bombs before time runs out. To find out the location of these bombs, you can send probes into the grid by clicking on the boxes outside of the grid one at a time and observe its path traveled to guess the location of the bombs."; 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 = ''; } }