Probiers doch mal mit meinem Script:
function popup(uebergabewert) {
width = screen.width -280;
height = width / 16 * 9;
left = (screen.width - width) / 2;
topPos = (screen.height - height) / 2;
param = 'resizable=no,menubar=no,scrollbars=yes';
param += ', left=' + left;
param += ', top=' + topPos;
param += ', width=' + width;
param += ', height=' + height;
link = 'http://www.google.de';
window.open(link, "profile" + profileid, param);
}
Am wichtigsten sind für dich die Parameter left und top...
Hoffe das hilft dir soweit.