var fDesc=new Array(); fDesc[0] = "Atomic Research is a Battleships variant. The player is a scientist who wants to discover the postion of some atoms on the game board.
On the game board some atoms are hidden. Object of the game is to detect these atoms with the close amount of moves as possible.
To find out the location of the atoms, the player "fires" rays from the border of the game board. Therefore click the button "Raytrace" and choose one of the numbered fields around the board."; 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 = ''; } }