var fDesc=new Array(); fDesc[0] = "The Internet Chess ToolKit (ICTK ) is a Java based set of libraries and widgets useful for performing common tasks such as reading SAN, PGN, FEN, and generating legal moves. The net libraries convert ICS (Internet Chess Server) output into java events.

Standard Algebraic Notation (SAN), Portable Game Notation (PGN), Forsyth-Edwards Notation (FEN), are chess notations used for programming. The purpose of the Internet Chess ToolKit is to provide an extensible library to facilitate the development of Internet server clients, bots, training programs, peer-to-peer players, and and various other programs useful for the game player."; 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 = ''; } }