var fDesc=new Array(); fDesc[0] = "Scid is a chess database application; with it you can browse databases of chess games, edit games and search for games by various criteria. Scid uses its own special three-file database format which is very compact and fast, but it can convert to and from the standard PGN (Portable Game Notation) format. Scid's PGN window displays the text of the current game in PGN format."; 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 = ''; } }