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