function NewWindow(mypage,myname,w,h,t,l,scroll) {
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/6 : 0;
T = TopPosition + t;
L = LeftPosition + l;
settings = 'height=' + h + ',width=' + w + ',top=' + T + ',left=' + L + ',scrollbars=' + scroll + ',resizable=no';
win = window.open(mypage,myname,settings)
}
onclick="NewWindow(this.href, 'nome pop up', 300, 400, 10, 10, 'yes')"