function NewWindow(mypage) { var w=400; var h=400; var myname="payme"; var winl = (screen.width - w) / 2; var wint = (screen.height - h) / 2; winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,resizable=yes'; win = window.open(mypage, myname, winprops); if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); } } function CreateWindow(target) { window.open(target, 'external', 'toolbar=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes'); }