function NewWindow(w,h,url){
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars'
	win = window.open(url, "PopUp", winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
//return false;
}

function NewWin(w,h,url){
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=0,menubar=0,status=0,toolbar=0'
	win = window.open(url, "PopUp", winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
//return false;
}