function NewWindow(mypage) {
var w = Math.round(screen.width * 0.8); 
var h = Math.round(screen.height * 0.6);
var winl = Math.round(screen.width * 0.1);
var wint = Math.round(screen.height * 0.1);
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars,resizable,status,menubar,toolbar,location';
win = window.open(mypage, 'largepopup', winprops);
if ((navigator.appName == 'Netscape') && (parseInt(navigator.appVersion)) >= 4) { win.window.focus(); }
}