var fDesc=new Array(); fDesc[0] = "GolfHandicap is a tool you can use to compute your USGA Handicap. It is friendly for both 18 hole rounds and 9 hole rounds. Open GolfHandicap and enter your golf scores by using the Edit/Add New Round menu selection. Alternatively, you can use the "+" button to bring up the same dialog."; 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 = ''; } }