//====================================================================================================
//	Function Name	:	Form_Submit()
//----------------------------------------------------------------------------------------------------
function Form_Submit(frm)
{
	with(frm)
    {
    	if(!IsEmpty(username, "Please enter Username."))
        {
			return false;
        }
		
    	if(!IsEmpty(password, "Please enter Password."))
        {
			return false;
        }
		
        return true;
    }
}
//====================================================================================================
//	Function Name	:	Form_Submit_Forget_Pwd()
//----------------------------------------------------------------------------------------------------
function PWRecovery_Form(frm)
{
	with(frm)
    {
    	if(!IsEmpty(user_login_id, "Please enter Username."))
        {
			return false;
        }
        return true;
    }
}

