var fDesc=new Array(); fDesc[0] = "Football is a great game, but coaching kid?s football can be very complicated with all the positions and required playing time. Football roster software can assist coaches in tracking their team?s rosters during the season. The program?s GUI is set up to be easy to use with the team roster on the right side and a window to browse through line-ups and games on the left. To enter a line up you open the new roster window. There is an offensive and defensive line-up for four quarters per game. All the relevant football positions such as center, cornerback, fullback, and linemen are all included along with bench spots. Rosters and line-ups can be printed out before game time to use during the game to set the starters for each quarter. A history of all the starting rosters is kept for the season and can be sorted by date, roster name, and opponent. Football Roster Assistant is freeware with no limitations and can be used for unlimited number of rosters and teams. Other features include reports, help, easy entry pull downs, example file, and sorting."; 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 = ''; } }