var fDesc=new Array(); fDesc[0] = "Sport Tables is a software for managing sport tournaments. It can be useful for tracking results and statistics of national/international leagues, world/continental cups, etc. As you enter match results, the program automatically calculates team stats, ranks teams and updates standings table. You can quickly display and edit tournament standings table, results grid, fixture list, team stats, etc."; 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 = ''; } }