<!--
	//
	// The Var tells the navigation whether or not to popup the confirm message
	//
	var confirmationOn = false;

	//
	// This function pops up the confirm message, and returns what the event's return value is
	//
	function ConfirmLink(evt) {
		if(confirmationOn) {
			var retVal = confirm('Clicking OK will exit process and your changes will be lost.  Click Cancel to resume editing.');
			if (window.event)
				event.returnValue = retVal;
			else if (!retVal && evt && evt.preventDefault)
			{
				evt.preventDefault();
				evt.stopPropagation();
			}
			return retVal;
		} else 
			return true;
	}

	function saveFrameWidth() {
		
		var width;
		if (window.frameElement.width)
			width = window.frameElement.width;
		else
			width = document.documentElement.scrollWidth;
		
		document.cookie = 'FrameWidth=' + escape(width);
		
	}
				
//-->

