function openWindow(windowUrl, windowTitle, windowWidth, windowHeight, windowX, windowY) {
	// set this to true if the popup should close
	// upon leaving the launching page; else, false
	var autoclose = true

	NFW=window.open(windowUrl, windowTitle, "toolbar=none")
	NFW.blur()
	NFW.resizeTo(windowWidth, windowHeight)
	NFW.moveTo(windowX, windowY)
	NFW.focus()

	if (autoclose){
		window.onunload = function(){NFW.close()}
	}
}
