function pupil( Nachname, Vorname, Strasse, Plz, Ort, Vorwahl, Nummer, Geburtsdatum, Beruf, Email, Homepage, Charac, Misc)
{
	this.Nachname = Nachname;
	this.Vorname = Vorname; 
	this.Strasse = Strasse;
	this.Plz = Plz;
	this.Ort = Ort;
	this.Vorwahl = Vorwahl;
	this.Nummer = Nummer;
	
	if(Geburtsdatum != '')
	{
		var fDot = Geburtsdatum.indexOf('.');
		var lDot = Geburtsdatum.lastIndexOf('.');
		
		var tag = Geburtsdatum.substr(0,fDot);
		var monat = Geburtsdatum.substr(fDot + 1, lDot - fDot - 1);
		var jahr = Geburtsdatum.substr(lDot + 1);
		
		this.Geburtsdatum = new Date(jahr,monat-1,tag);
	} else this.Geburtsdatum = Geburtsdatum;
	this.GeburtstagString=Geburtsdatum;
	this.Beruf = Beruf;
	this.Email = Email;
	this.Homepage = Homepage;
	this.Charac = Charac;
	this.Misc = Misc;
}

