var bureau = new creerbureau();


function creerbureau() {
	this.nb_niv0=0;
	this.add0=add_niv0;
	this.add1=add_niv1;
}

function add_niv0(titre) {
	var niv0 = new Object;
		niv0.titre=titre;
		niv0.nb_niv1=0;
	this[this.nb_niv0]=niv0;
	this.nb_niv0++;
}

function add_niv1(titre,nom,prenom,adresse1,adresse2,code_postal,ville,telephone,portable,email) {
	var no_niv0 = this.nb_niv0-1;
	var no_niv1= this[no_niv0].nb_niv1;
	var niv1 = new Object;
		niv1.titre=titre;
		niv1.nom=nom;
		niv1.prenom=prenom;
		niv1.adresse1=adresse1;
		niv1.adresse2=adresse2;
		niv1.code_postal=code_postal;
		niv1.ville=ville;
		niv1.telephone=telephone;
		niv1.portable=portable;
		niv1.email=email;
		niv1.nb_niv2=0;
	this[no_niv0][no_niv1]=niv1;
	this[no_niv0].nb_niv1++;
}
