var fDesc=new Array(); fDesc[0] = "We know that one of the most difficult things for any baseball, pony, little league coach can be to determine the roster for each game. Making sure play time is fair for the players, tracking innings pitched, keeping parents happy all while trying to win games is never easy. We've tried to create a program to help coaches out. Baseball Roster Assistant is a software program designed for baseball coaches to track their team's roster. Each game can be individually tracked with who played what inning and what baseball position they played. The Date of the game, opponent, and win vs. loss record is also tracked so coaches can determine which roster and line up is having the most game day success. This also allows baseball coaches to keep a record of how many innings a player is getting each game and to insure each baseball player gets the play time they deserve."; 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 = ''; } }