		function OpenWin(MyUrl,ID)
		{
			w = window.open(MyUrl,"popup","toolbar=no,titlebar=no,width=350,height=350,status=no,resizable=yes,scrollbars=yes,menubar=no");
			w.focus();
		}
		
		function DisplayErrorMessage()
		{
			var ErrorString;
			
			ErrorString = document.forms['Form1'].HiddenErrorMsg.value;
			if(ErrorString != '')
			{
				alert(ErrorString);
			}
			document.forms['Form1'].HiddenErrorMsg.value = '';
			return true;
		}
		
		function SetFocus(ControlName)
		{
			var fControl;
			
			try
			{
				document.forms['Form1'].elements[ControlName].focus();
			}
			catch(e)
			{};
		}

