var fDesc=new Array(); fDesc[0] = "Probe is a strategy board game pitting you against the computer. The objective is to capture Probe's Flag before Probe captures yours.

The game board is centered with your piece tray on the left and Probe's tray on the right. Pieces still on the board display as dimmed in the trays. The identities of Probe's pieces remain hidden until after attacks, just as the identities of your pieces remain hidden from Probe. Pieces may not move into the two areas in the center of the board that display as lakes in the game board design shown below."; 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 = ''; } }