var fDesc=new Array(); fDesc[0] = "FinalGen is a free program that generates tablebases for chess endgames with up to one piece per side, and any number of pawns. It includes a "Search for draw" option that allows speeding up the process. FinalGen displays statistic information such as the estimated time remaining, the required hard disk space and the number of positions calculated."; 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 = ''; } }