
<!--
function F_JS_ConvertToUpper_login(current_field_obj)
{
 current_field_obj.value = current_field_obj.value.toUpperCase();
}

function F_JS_OnClick_LoginButton_event_admin(pass_IN_JS_form_obj)
{

 form_errors_ind = F_JS_perform_client_side_edits_login_event_admin(pass_IN_JS_form_obj);
 if (form_errors_ind == true)
    { 
	 ;
	}
 else	
    { 
	 js_TRANS_lock_ValidButton_pressed = true;
     pass_IN_JS_form_obj.action = "event_login_u.asp";
     pass_IN_JS_form_obj.submit();
	}	  
}


function F_JS_perform_client_side_edits_login_event_admin(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_NAME.value == "" )
    {
	  //if no file format is selected...
	  error_ind = true;
	  error_msg = "-Please provide your ID";
      error_msg_complete = error_msg_complete + error_msg + "\n";
	}

 if ( pass_IN_JS_form_obj.FF_LOGIN_PASSWORD.value == "" )
    {
	  //if no file format is selected...
	  error_ind = true;
	  error_msg = "-Please provide your Password";
      error_msg_complete = error_msg_complete + error_msg + "\n";
	}


 if (error_ind)
    {
	 alert(error_msg_complete);
	 return true;
	}
}
//-->
