var reCaptchaWS=function() {
reCaptchaWS.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
reCaptchaWS.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return reCaptchaWS._staticInstance.get_path();},
ValidateCaptcha:function(key,response,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'ValidateCaptcha',false,{key:key,response:response},succeededCallback,failedCallback,userContext); },
ValidateCaptchaWithPublicKey:function(publickey,challenge,response,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'ValidateCaptchaWithPublicKey',false,{publickey:publickey,challenge:challenge,response:response},succeededCallback,failedCallback,userContext); }}
reCaptchaWS.registerClass('reCaptchaWS',Sys.Net.WebServiceProxy);
reCaptchaWS._staticInstance = new reCaptchaWS();
reCaptchaWS.set_path = function(value) { reCaptchaWS._staticInstance.set_path(value); }
reCaptchaWS.get_path = function() { return reCaptchaWS._staticInstance.get_path(); }
reCaptchaWS.set_timeout = function(value) { reCaptchaWS._staticInstance.set_timeout(value); }
reCaptchaWS.get_timeout = function() { return reCaptchaWS._staticInstance.get_timeout(); }
reCaptchaWS.set_defaultUserContext = function(value) { reCaptchaWS._staticInstance.set_defaultUserContext(value); }
reCaptchaWS.get_defaultUserContext = function() { return reCaptchaWS._staticInstance.get_defaultUserContext(); }
reCaptchaWS.set_defaultSucceededCallback = function(value) { reCaptchaWS._staticInstance.set_defaultSucceededCallback(value); }
reCaptchaWS.get_defaultSucceededCallback = function() { return reCaptchaWS._staticInstance.get_defaultSucceededCallback(); }
reCaptchaWS.set_defaultFailedCallback = function(value) { reCaptchaWS._staticInstance.set_defaultFailedCallback(value); }
reCaptchaWS.get_defaultFailedCallback = function() { return reCaptchaWS._staticInstance.get_defaultFailedCallback(); }
reCaptchaWS.set_path("/Utilities35/FormMailer2/reCaptchaWS.asmx");
reCaptchaWS.ValidateCaptcha= function(key,response,onSuccess,onFailed,userContext) {reCaptchaWS._staticInstance.ValidateCaptcha(key,response,onSuccess,onFailed,userContext); }
reCaptchaWS.ValidateCaptchaWithPublicKey= function(publickey,challenge,response,onSuccess,onFailed,userContext) {reCaptchaWS._staticInstance.ValidateCaptchaWithPublicKey(publickey,challenge,response,onSuccess,onFailed,userContext); }

