    var RecaptchaOptions = {theme: "white"};

    function validateCaptcha()
    {
        if ($("#lsicaptcha").is(":visible")) {
        	challengeField = $("input#recaptcha_challenge_field").val();
        	responseField = $("input#recaptcha_response_field").val();
        	emailField = $("input#enewsEmail").val();
            //console.log(challengeField);
            //console.log(responseField);
        	//return false;
        	var html = $.ajax({
        		type: "POST",
        		url: "http://lsiowa.org/staging/wp-content/themes/lsiwp//recaptcha/ajax.recaptcha.php",
        		data: "recaptcha_challenge_field=" + challengeField + "&recaptcha_response_field=" + responseField + "&email=" + emailField,
        		async: false
        		}).responseText;

            // console.log( html );
        	if(html == "success") {
        		//Add the Action to the Form
        		//$("form").attr("action", "http://action/to/the/form_handler");
        		//Indicate a Successful Captcha
        		$("#enewsEmail").reset();
        		$("#lsicaptcha").fadeOut();
        		$("#captchaStatus").html("Success!");
        		return false;
        	} else {
        		$("#captchaStatus").html("The security code you entered did not match. Please try again.");
        		Recaptcha.reload();
        		return false;
        	}
        }
        else { // not visible
            if ($("#enews_signup").validate().numberOfInvalids() == 0) {
                $("#lsicaptcha").fadeIn();
                $("#recaptcha_response_field").focus();
                $("#newsletter_button").attr('value', "Verify!");
            }
            else {
                // Do nothing.
            }
            return false;
        }
    }
