var fDesc=new Array(); fDesc[0] = "GOWrite provides professional diagram editing capabilities for publication purposes.
Diagrams can start from any part of the game record and variations, with many options for the numbering. User interface also provides a choice for inserting the diagram before or after the current stone.

Variations are visible and easily managed in the game tree window.
User interface provides a choice for inserting the variation replacing the current move or showing the sequence after the current stone.
Includes mode to quickly set up unnumbered black and white stones on 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 = ''; } }