 
function MM_openBrWindow(theURL,winName,features,largeur,hauteur) { //v2.0
	posx=(screen.width-largeur)/2;
	posy=(screen.height-hauteur)/2;
  window.open(theURL,winName,features+",width="+largeur+",height="+hauteur+",top="+posy+",left="+posx);
}

function OpenCentre(theURL,winName,features,largeur,hauteur) { //v2.0
	posx=(screen.width-largeur)/2;
	posy=(screen.height-hauteur)/2;
  window.open(theURL,winName,features+",width="+largeur+",height="+hauteur+",top="+posy+",left="+posx);
}
 