function popup(url,nom,hauteur,largeur){
	var top=(screen.height-hauteur)/2; // Position du POPUP en haut en px
	var left=(screen.width-largeur)/2; // Position du POPUP à gauche en px
	window.open(url,nom,'height='+hauteur+',width='+largeur+',top='+top+',left='+left+',status=no,directories=no,toolbar=no,location=no,menubar=no,scrollbars=no,resizable=no');
}

