<!--
function F_JS_OnClick_SubmitButton_login_recall_request_form(pass_IN_JS_form_obj)
{

 form_errors_ind = F_JS_perform_client_side_edits_login_recall_request_form(pass_IN_JS_form_obj);
 if (form_errors_ind == true)
    { 
	 ;
	}
 else	
    { 
	 //js_TRANS_lock_ValidButton_pressed = true;
     pass_IN_JS_form_obj.FB_Submit_login_recall_request_form.disabled = true;
	 
     pass_IN_JS_form_obj.action = "baseball_login_recall_u.asp";
     pass_IN_JS_form_obj.submit();
	}	  
}


function F_JS_perform_client_side_edits_login_recall_request_form(pass_IN_JS_form_obj)
{
 var error_ind;
 var error_msg;
 var error_msg_complete;
 
 error_ind = false;
 error_msg = "";
 error_msg_complete = "Your information is not complete due to the following errors: \n\n";
 

 if (pass_IN_JS_form_obj.FF_LOGIN_RECALL_METHOD.value == "LRU")
 {
  l_compare_both_email_addr_ind = true; 
  if (pass_IN_JS_form_obj.FF_EMAIL_ADDRESS_CON_INCOMING.value == "")
    {
	 l_compare_both_email_addr_ind = false; 
	
     error_ind = true;
     error_msg = "-Please provide an Email Address";
     error_msg_complete = error_msg_complete + error_msg + "\n";
    }
  
  if (pass_IN_JS_form_obj.FF_EMAIL_ADDRESS_CON_INCOMING_RETYPE.value == "")
    {
	 l_compare_both_email_addr_ind = false; 
	
     error_ind = true;
     error_msg = "-Please Re-type Your Email Address as requested";
     error_msg_complete = error_msg_complete + error_msg + "\n";
    }
	
  if (l_compare_both_email_addr_ind == true)
    {
	 if (pass_IN_JS_form_obj.FF_EMAIL_ADDRESS_CON_INCOMING.value != pass_IN_JS_form_obj.FF_EMAIL_ADDRESS_CON_INCOMING_RETYPE.value)
        {
         error_ind = true;
         error_msg = "-Email Address and Re-typed Email Address do not match";
         error_msg_complete = error_msg_complete + error_msg + "\n";
		}
    }
 }
else
 if (pass_IN_JS_form_obj.FF_LOGIN_RECALL_METHOD.value == "LRP")
 {
  l_compare_both_email_addr_ind = true; 
  if (pass_IN_JS_form_obj.FF_LOGIN_NAME_INCOMING.value == "")
    {
	
     error_ind = true;
     error_msg = "-Please provide your User ID";
     error_msg_complete = error_msg_complete + error_msg + "\n";
    }
 }
else
    {
	 error_ind = true;
     error_msg = "-Invalid Login Recall Method, please contact Scorebooth";
     error_msg_complete = error_msg_complete + error_msg + "\n";
	}



 if (error_ind)
    {
	 alert(error_msg_complete);
	 return true;
	}
}
//-->

