<!--
	function checkEnter(e){ //e is event object passed from function invocation
		var characterCode = (window.event) ? event.keyCode : e.which;
		if(characterCode == 13){ return true; }else{ return false; };
	};
	
	function submitForm(strFormName, strAction, strSystem, e)
	{
		if (checkEnter(e)==true) {
			document.getElementById(strFormName).Action.value=strAction;
			if (strSystem==null || strSystem=='') {
				if (RunV_Includes(document.getElementById(strFormName))==true) {document.getElementById(strFormName).submit()};
			}else{
				if (RunV(document.getElementById(strFormName))==true) {document.getElementById(strFormName).submit()};
			};
		};
	};

	function openWin( windowURL, windowName, windowFeatures ) {
		try
		{
			return window.open(windowURL, windowName, windowFeatures)
		}
		catch (e)
		{
			window.alert("Popup window blocked " + e.number);
		}
	};

	function SubmitV(form) {
		if (form.Action.value=='') {return RunV(form);}else{return false;};
	};

	function SubmitV_Includes(form) {
		if (form.Action.value=='') {return RunV_Includes(form);}else{return false;};
	};

	function CloseWindow() {
		self.close();
	};

//-->