function popup(url,nom,largeur,hauteur){
	var Dessus=(screen.height/2)-(hauteur/2);
	var Gauche=(screen.width/2)-(largeur/2);
	var features= 'height='+hauteur+',width='+largeur+',top='+Dessus +',left='+Gauche+",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no";
	thewin=window.open(url,nom,features);
}