var fDesc=new Array();
fDesc[0] = "Turbo Tourney Pro is an all-purpose sports pool manager intended for just about any type of pool for any type of sport.
Turbo Tourney Pro includes templates for the NFL (Season & Playoffs), College Bowls, NHL Playoffs, MLB Playoffs, NBA Playoffs, and the World Golf Match Play
Championships so you can run pools all year long!";
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 = '';
}
}