
<!--
function roster_Player(par, pid, club, fname, lname, pos, prospect, dl, brv) {
	this.par=par;
	this.pid=pid;
	this.club=club;
	this.fname=fname;
	this.lname=lname;
	this.prospect=prospect;
	this.pos=pos;
	this.dl=dl;
	this.brv= (brv != null) ? brv : false;
	if (dl != false) this.pos = "DL";
	if (brv == true) this.pos = "BRV";
	this.onInit();
} 
roster_Player.prototype.onInit = function() {}
  
function roster_addPlayer(pid, club, fname, lname, pos, prospect, dl, brv) {
	this.players[this.players.length] = new roster_Player(this, pid, club, fname, lname, pos, prospect, dl, brv);
}

function Roster() {
	this.players=new Array();
	this.onInit();
	this.addPlayer=roster_addPlayer;
}
Roster.prototype.onInit = function() {}
//-->
  
   