function playerToString() {
	return this.name;
}

function Player(name, password) {
	this.name=name;
	this.password=password;
	this.role=null;
	this.alive=true;
	this.chosen=-1;
	this.toString=playerToString;
	this.priorChosen=new Array();
	this.invincible=false;
}