<!--
// Pop-up
function fNW(url, name) {
	wProp = "toolbar=1,location=1,resizable=1,scrollbars=1,status=1,height=460,width=430,left=0,top=0"
	
	//donation reporting properties
	if(url.indexOf("npo/reports") > -1) {
		sw = screen.availWidth
		sh = screen.availHeight-20
		ww = sw - sw*.25
		wh = sh - sh*.25
		x = (sw - ww)/2
		y = (sh - wh)/2
		name = "npoReportWin"
		wProp = "toolbar=1,location=1,resizable=1,scrollbars=1,status=1,height=" + wh + ",width=" + ww + ",left=" + x + ",top=" + y
	}
	var nWin = window.open(url, name, wProp)
	nWin.focus()
	
}
//-->