function F_JS_OnClick_LoginButton(pass_IN_JS_next_page_text)
{
 F_JS_perform_any_necessary_events();
 form_errors_ind = F_JS_perform_client_side_edits();
 if (form_errors_ind == true)
    { <!-- do nothing -->
	 ;
	}
 else	
    {
	 js_trans_current_form_obj.action = pass_IN_JS_next_page_text;
     js_trans_current_form_obj.submit();
	}	  
}

function F_JS_perform_any_necessary_events()
{
 <!-- perform any client side events in case someone did not leave a field, before pressing Save, etc. -->
 F_JS_ConvertToUpper(js_trans_current_form_obj.FF_LOGIN_ID);
 F_JS_ConvertToUpper(js_trans_current_form_obj.FF_LOGIN_PASSWORD);
}

function F_JS_perform_client_side_edits()
{
 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 (js_trans_current_form_obj.FF_LOGIN_ID.value == "")
    {
	 error_ind = true;
	 error_msg = "-Please enter your Login I.D.";
     error_msg_complete = error_msg_complete + error_msg + "\n";
	}
	
 if (js_trans_current_form_obj.FF_LOGIN_PASSWORD.value == "")
    {
	 error_ind = true;
	 error_msg = "-Please enter your Password";
	 error_msg_complete = error_msg_complete + error_msg + "\n";
	}

 if (error_ind)
    {
	 alert(error_msg_complete);
	 return true;
	}
}



