var fDesc=new Array();
fDesc[0] = "Produce detailed statistical reports from any computer with an internet connection.
Main features:
-Track performance - a great tool
-Collect statistics in real-time at the game
-Saves time, easy to use
-Quick data entry
-Replaces scorebook
-Enter stats on your handheld (supports Palm OS and certain Pocket PC/Windows Mobile -handhelds, see requirements below), laptop, or desktop computer
-Instant access to at bat summaries
-Real-time hit charts and on-screen statistic summaries
-Team, player, game, and cumulative statistics and hit charts
-Individual player career reports
-Print reports and hit charts
-Generate team and player trading cards with season or career statistics
-Use both scorecard and quick entry in the same game
-Custom hit charts
-Includes powerful Tournament/League Manager
-Export data (in HTML format) to upload to a Web site
-Compatible with Pocket PC devices (Pocket PC 2003 or newer)";
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 = '';
}
}