var fDesc=new Array();
fDesc[0] = "GameTracker is packed with features.
You can :
- Track all of the Sessions you attend
- Track all of the Games you play including detailed information like scores, teams, starting position, details of the game and more!
- Search a huge, pre-loaded list of Games and Titles
- Enter personal information about Players
- Compile detailed 5&10 lists and Session Reports directly from the information you've entered
- View pre-selected statistics for chosen games and players
- Perform powerful searches on all data.
- Generate a virtually endless variety of custom reports and statistics based on criteria that you choose!";
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 = '';
}
}