function NewWindow(mypage, myname, w, h, scroll, resizable) {var winl = (screen.width - w) / 2;var wint = (screen.height - h) / 2;winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable='+resizable;win = window.open(mypage, myname, winprops);if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }}function NewWindowFS(mypage, myname) {var w = screen.width;var h = screen.height - 20;winprops = 'height='+h+',width='+w+',top=0,left=0,scrollbars=yes,resizable=yes';win = window.open(mypage, myname, winprops);if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }}
