function authChallengeResponse( authForm ) {
    str = authForm.auth_username.value + ":" + MD5( authForm.auth_password.value ) + ":" + authForm.auth_challenge.value;
    authForm.auth_response.value = MD5( str );
    authForm.auth_password.value = "";
    return true
}

