<!--


		function chkForgottenPassword(theForm)
		{
		//alert("called")


		  if (theForm.txtEmail.value == "")
		  {
		    alert("Please enter a value.");
		    theForm.txtEmail.focus();
		    return (false);
		  }

		  
					  
		  if (theForm.txtEmail.value.length > 100)
		  {
		    alert("Please enter at most 50 characters in the field.");
		    theForm.txtEmail.focus();
		    return (false);
		  }

		  
					  
			return (true);
		}

	
	
	


	//-->
