// JavaScript Documentfunction centrePopUpVariable(url,largeur,hauteur) {	var top=(screen.height-hauteur)/2;	var left=(screen.width-largeur)/2;	window.open(url,"Confirmation","scrollbars=yes,resizable=yes,top="+top+",left="+left+",width="+largeur+",height="+hauteur);}