var fDesc=new Array();
fDesc[0] = "Tournament Time has an easy wizard-driven interface makes it easy to create any tournament layout you need.
Main Features:
- 12 schedule report formats
- All reports displayed in WYSIWYG format
- Reports can be printed in landscape mode, as PDF files or in web-ready HTML
- Supports up to 547 teams in a division with pool play, 256 teams in the elimination bracket, and no limit on the number of divisions
- Sophisticated analysis routine automatically verifies all changes to the tournament and guarantees no scheduling conflicts
- Generates sanctioned formats for Little League, Babe Ruth, ASA Softball, USSA Softball and many others";
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 = '';
}
}