// JavaScript Document


function SendCaptcha(str)
{
	$.get("bin/captchaVerify.php?name="+str, function(data){
	    if (data=="success")
        {
            CaptchaSuccess();
        }
        else
        {
            CaptchaFail();
			alert(data);
        }
	});
}
