// by PDAsia.com, Technical Support - Ricky YUEN
// 28 June 2001


function NewWindow(mypage, myname, w, h, scroll, menu, tool, locat, personal, status) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
// winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',toolbar=true'+resizable
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',menubar='+menu+',toolbar='+tool+',locationbar='+locat+',personalbar='+personal+',statusbar='+status+'resizable'

win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

function MailToFdWindow(mypage, myname, w, h, scroll, menu, tool, locat, personal, status) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
// winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',toolbar=true'+resizable
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',menubar='+menu+',toolbar='+tool+',locationbar='+locat+',personalbar='+personal+',statusbar='+status+'resizable'
//winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',menubar='+menu+',toolbar='+tool+',locationbar='+locat+',personalbar='+personal+',statusbar='+status+'resizable'

win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
