var fDesc=new Array(); fDesc[0] = "OnCourt is a program for all tennis fans. It contains information on the results of more than 940 thousand tennis matches, played by the best players on the planet since 1990. The program includes both men's and women's tennis. With this program you can get a lot of statistical information about any tennis player, about any tennis tournament or histories of the head-to-head matches of any two players."; 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 = ''; } }