var fDesc=new Array(); fDesc[0] = "The object of the game is to get $1,000,000,000 (one billion dollars), in which case the player win the game and everybody's score resets. To do this, the player plays a large number of "matches" with other players. In each match, the two players share a 5x3 grid where they secretly place a bomb.

Since players do not know where their opponent's bomb is, it is possible that both bombs could be placed in the same spot. After the two bombs are placed, players take turns uncovering spaces which cover up a cash value, event, or minigame"; 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 = ''; } }