function User(sVName,sNName,ability) {
	this.vname = sVName;
	this.nname = sNName;
	this.einschaetzung = 3; //1,3,6
	this.ability = ability; //1,3,6
	this.doneTests = new Array();
	this.points = 0;
	this.password = "";
	
	
	
	this.setVName = function(sName) {this.vname = sName;}
	this.getVName = function() {return this.vname;}

	this.setNName = function(sName) {this.nname = sName;}
	this.getNName = function() {return this.nname;}
	this.getName = function() {return this.vname+" "+this.nname;}

	this.setEinschaetzung = function(sValue) {this.einschaetzung = sValue;}
	this.getEinschaetzung = function() {return this.einschaetzung;}

	this.setAbility = function(sValue) {this.ability = sValue;}
	this.getAbility = function() {return this.ability;}
	
	this.setDoneTests = function(sValue) {this.doneTests = sValue;}
	this.getDoneTests = function() {return this.doneTests;}	

	this.setPoints = function(sValue) {this.points = sValue;}
	this.getPoints = function() {return this.points;}
	
	this.setPassword = function(sValue) {this.password = sValue;}
	this.getPassword = function() {return this.password;}
	
}
