var fDesc=new Array(); fDesc[0] = "stChess is a chess tournament administration and management program. You can use its menu to edit the tournament documents, player names, points, results, and other data in realtime. You can easily customize the theme, background color, font, etc. It has in-built support for Round-Robin, KO system, and Swiss system tournaments."; 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 = ''; } }