//====================================================================================================
//	File Name		:	login.js
//----------------------------------------------------------------------------------------------------
//	Purpose			:	Client side validation in JavaScript.
//	Creation Date	:	05-May-2003
//====================================================================================================

function Form_Submit_Forgot(frm)
{
	with(frm)
    {
		//alert("hi");
		//return false;
		if(!IsEmpty(email_address, 'Please Enter, Login Name / Email .'))
        {
			return false;
        }
		Submit.value='Submit';
		submit();
		return true;
    }
}
