var CaptchaController=function() {
CaptchaController.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
CaptchaController.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return CaptchaController._staticInstance.get_path();},
GetCaptchaId:function(webSessionId,tag,width,height,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetCaptchaId',true,{webSessionId:webSessionId,tag:tag,width:width,height:height},succeededCallback,failedCallback,userContext); }}
CaptchaController.registerClass('CaptchaController',Sys.Net.WebServiceProxy);
CaptchaController._staticInstance = new CaptchaController();
CaptchaController.set_path = function(value) { CaptchaController._staticInstance.set_path(value); }
CaptchaController.get_path = function() { return CaptchaController._staticInstance.get_path(); }
CaptchaController.set_timeout = function(value) { CaptchaController._staticInstance.set_timeout(value); }
CaptchaController.get_timeout = function() { return CaptchaController._staticInstance.get_timeout(); }
CaptchaController.set_defaultUserContext = function(value) { CaptchaController._staticInstance.set_defaultUserContext(value); }
CaptchaController.get_defaultUserContext = function() { return CaptchaController._staticInstance.get_defaultUserContext(); }
CaptchaController.set_defaultSucceededCallback = function(value) { CaptchaController._staticInstance.set_defaultSucceededCallback(value); }
CaptchaController.get_defaultSucceededCallback = function() { return CaptchaController._staticInstance.get_defaultSucceededCallback(); }
CaptchaController.set_defaultFailedCallback = function(value) { CaptchaController._staticInstance.set_defaultFailedCallback(value); }
CaptchaController.get_defaultFailedCallback = function() { return CaptchaController._staticInstance.get_defaultFailedCallback(); }
CaptchaController.set_path("/Captcha/CaptchaController.asmx");
CaptchaController.GetCaptchaId= function(webSessionId,tag,width,height,onSuccess,onFailed,userContext) {CaptchaController._staticInstance.GetCaptchaId(webSessionId,tag,width,height,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(CaptchaId) === 'undefined') {
var CaptchaId=gtc("CaptchaId");
CaptchaId.registerClass('CaptchaId');
}
