var fDesc=new Array(); fDesc[0] = "Football Pool Manager is a windows program that will help you run and manage an office football pool. You have complete control over the type of pool you want to run, including running a confidence pool, straight picks, and/or against the latest line. Reports can be printed, published as web pages, saved as text files, or emailed to pool members."; 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 = ''; } }