var fDesc=new Array();
fDesc[0] = "DakStats Baseball statistics software is ideal for tracking game, season and career stats, from high schools to professional stadiums. DakStats Baseball records both baseball and softball stats.
Features:
- Accurate stat reports: creates detailed game, season, and career reports in HTML format.
- Record essential stats: leads you through the game, ensuring that all the correct stats get recorded for each play.
- Common Baseball/Softball rules: supports baseball or softball, the DH rule, softball tie-breaker rule, and unlimited player rosters.
- Import/Export features: imports and exports rosters, games, and stats.
- Balance/error-checking tools: verifies the accuracy of your stats with built-in balance and error-checking tools.";
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 = '';
}
}