In the onClick event of the notes form or web form put:
if (navigator.appName == "Microsoft Internet Explorer") {
iWinX = window.event.screenX;
iWinY = window.event.screenY;
}
As backup for Netscape users etc , put in the onLoad event :
var iWinX = 100;
var iWinY = 100;
Then in your button code put:
namelistwindow = window.open('', '', 'height=155,width=200,screenX=200,screenY=300,top=' +(iWinY-10)+',left='+(iWinX+10)+',resizable=yes,location=no,scrollbars=yes,menubar=no,toolbar=no,directories=no');
Change the -10 and +10 to suit the size of your button. Brilliant.