i'm trying to place some pop ups regarding to the
opener window, so i need the x and y pos.

works fine in netscape on mac, win and ie on win using
following script:

if (document.all) {
y = window.screenTop;
x = window.screenLeft;
}
else if (document.layers) {
x = window.screenX;
y = window.screenY;
}

but returns undefined on ie on a mac?!
is there anything i can do about this?