var fDesc=new Array(); fDesc[0] = "ChessTool PGN is a freeware application, reads and writes chesss games in the format Portable Game Notation (PGN).

Manages the files of database of chess games stored in the PGN. The application has been designed on the basis of the Portable Game Notation Specification and Implementation Guide. Allows the administration of the files of chess games, the amendment of the same or the creation of new. The reading on a board and notation of the games contained in the same, its amendment or the creation of new games."; 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 = ''; } }