var fDesc=new Array(); fDesc[0] = "Volleyball Roster Assistant is designed to help volleyball coaches track their roster. A roster for each volleyball match can be set up for who plays which position for each game and who sits on the bench. Later, results such as per game score and the overall match results can be recorded.
Features included in the software include easy browsing of volleyball rosters on the front page, entering and editing of match rosters with 5 different game set ups per match, printable reports for each roster, copy and delete rosters, and program help."; 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 = ''; } }