var fDesc=new Array(); fDesc[0] = "PGN Mentor is a program for viewing, searching, and analyzing chess games. This application has a large ECO opening book database, with over 13,400 individual lines. You can download various chess games a PGN files from the developer site. Its tree organization mode for PGN files and ECO code openings allow you to browse them easily."; 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 = ''; } }