function CloseRefresh() {
	window.close();
		if (!window.opener.closed) {
			window.opener.location.reload();
			window.opener.focus();
		}
	}
	
function goRegister() {
	window.close();
		if (!window.opener.closed) {
			window.opener.location.reload();
			window.opener.location = 'index.cfm?event=register';
			window.opener.focus();
		}
	}
	
function popUp(URL) {
	windowprops = "height=700,width=760,location=no,scrollbars=yes,menubar=no,toolbar=no,resizable=yes";
	window.open(URL, "popUp", windowprops);
}