function newPopup(URL) {
	newWindow = window.open( URL, 'popUpWindow', 'toolbar=0,location=0,scrollbars=1,resizable=yes,width=500,height=500');
	newWindow.focus();
}

function updateParent(newURL) {
	opener.document.location = newURL;
	window.opener.focus();
}

function copyrightWindow(path) {
	newWindow = window.open( path + 'includes/copyright.html', 'copyrightWin', 'toolbar=0,location=0,scrollbars=1,resizable=yes,width=400,height=400');
	newWindow.focus();
}



