var fDesc=new Array(); fDesc[0] = "In this game there will be a board with horizontal and vertical lines that make up a board with 19 x 19 intersections. You and your opponent take turns to place stones on the intersections.
The score is calculated by adding up the total area surrounded by your stones, plus the number of opponent stones captured. You can capture the opponent stones by surrounding the opponent stones with your stones and/or the edges of the board completely.
If there is an blank space inside the area of opponent stones, then those stones are not yet captured, and they can be captured only when you put a stone to fill that empty space."; 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 = ''; } }