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