<!-- hide me 
		function loadForm(){
			document.frmLogin.UserName.focus();
		}
		
		var isNetscape;
		var isIE;
		
		if (navigator.appName == "Netscape"){
			isNetscape = true;
			}
		else {
			isIE = true;
		//	document.write('<STYLE>.BoxInput {font-family: verdana; background:#eeeeee; border-style: ridge; border-color: silver; border-width: 2px; color:maroon;}</style>');
			}
			

		function FormValidator(theForm)
		{
		
		  if (theForm.UserName.value == "")
		  {
			alert("Please enter a value for the \"UserName\" field.");
			theForm.UserName.focus();
			return (false);
		  }
		
		  if (theForm.Password.value == "")
		  {
			alert("Please enter a value for the \"Password\" field.");
			theForm.Password.focus();
			return (false);
		  }
		
		}

		function borderOn(theObject){
			if (isIE) {			
				theObject.style.borderStyle='ridge';
				theObject.style.borderWidth='1px';
				theObject.style.background='white';
			}
		}
		
		function borderOff(theObject){
			if (isIE) {			
				theObject.style.borderStyle='ridge';
				theObject.style.borderWidth='1px';
				theObject.style.background='#e8e8e8';	
				theObject.style.borderColor='silver';							
				}
		}			

// end hiding -->
