//player object
function PlayerObject(idtPlayer, idtChampionship, namPlayer, namTeamPlayer, numInitialValue, numCurrentValue, idtPlayerPosition, playerDesqualified)
{
	this.id = idtPlayer;
	this.name = namPlayer;
	this.teamName = namTeamPlayer;
  this.initialValue = numInitialValue;
	this.currentValue = numCurrentValue;
	this.idtPosition = idtPlayerPosition;
	this.idtChampionship = idtChampionship;
	if(playerDesqualified != null)
	{
		this.disqualified = playerDesqualified;
	}
	else
	{
		this.disqualified = false;
	}
}