<!--
// openPopUp //
var windowObjectReference = null;

function openPopUp(winURL,winHeight,winWidth) {
	if (windowObjectReference == null || windowObjectReference.closed) {
		windowObjectReference = window.open(winURL, "popUp",
    	winHeight + "," + winWidth + ",resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no");
	}

	else {
	    windowObjectReference.focus();
	}
}
// -->

