Lors de l'ouverture d'une popup en javaScript, tu peux choisir différents paramètres dans la position de ta fenêtre sur l'écran grâce aux paramètres top et left.
Ainsi en mettant par exemple:
var height = "415";
var width = "550";
var top = (screen.availHeight-height)/2;
var left = (screen.availWidth-width)/2;
window.open("toto.htm","popup","width="+width+",height="+height+",toolbar=no,scrollbars=no,statusbar=no,resizable=no,top="+top+",left="+left);
Tu obtiendras une super popup centrée!
---------------
@ + : Rem'