per js geht das sehr einfach:
//breite des popups
var W = 600;
// höhe des popups
var H = 500;
// horizontal zentrieren
var LEFT = (screen.width / 2) - (W / 2);
// vertikal zentrieren
var TOP = (screen.height / 2) - (H / 2);
var GEOM = 'width='+W+',height='+H+',left='+LEFT+',top='+TOP+',location=no,menubar=no,resizeable=no,scrollbars=no,status=yes,toolbar=no';
PopUp = window.open("<Pfad>","PopUpWindow",GEOM);
gruß hein