<!--
var MyChildWindow = null;
function popUp(URL, x, y, width, height) {
	window.name="MyParentWindow";
	myName = "myNewWindow" + width;
	MyChildWindow = window.open(URL, myName, 'toolbar=0,scrollbars=yes,location=0,statusbar=0,menubar=0,resizable=0,width=' + width + ',height=' + height + ',left=' + x + ',top=' + y);
	MyChildWindow.focus();
}

function popUp2(URL) {
   popUp(URL, 10, 10, 515, 400);
}

function popUp3(URL) {
   popUp(URL, 10, 10, 400, 250);
}

function CloseAndRedirect(URL) {
	opener.location=URL;
	window.close();
}

function CloseAndRefresh() {
	opener.location.reload(true);
	window.close();
}
//-->
