Type.registerNamespace('healthfitlabs.com');
healthfitlabs.com.service=function() {
healthfitlabs.com.service.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
healthfitlabs.com.service.prototype={
SubmitNewsletter:function(emailaddress,succeededCallback, failedCallback, userContext) {
return this._invoke(healthfitlabs.com.service.get_path(), 'SubmitNewsletter',false,{emailaddress:emailaddress},succeededCallback,failedCallback,userContext); }}
healthfitlabs.com.service.registerClass('healthfitlabs.com.service',Sys.Net.WebServiceProxy);
healthfitlabs.com.service._staticInstance = new healthfitlabs.com.service();
healthfitlabs.com.service.set_path = function(value) { healthfitlabs.com.service._staticInstance._path = value; }
healthfitlabs.com.service.get_path = function() { return healthfitlabs.com.service._staticInstance._path; }
healthfitlabs.com.service.set_timeout = function(value) { healthfitlabs.com.service._staticInstance._timeout = value; }
healthfitlabs.com.service.get_timeout = function() { return healthfitlabs.com.service._staticInstance._timeout; }
healthfitlabs.com.service.set_defaultUserContext = function(value) { healthfitlabs.com.service._staticInstance._userContext = value; }
healthfitlabs.com.service.get_defaultUserContext = function() { return healthfitlabs.com.service._staticInstance._userContext; }
healthfitlabs.com.service.set_defaultSucceededCallback = function(value) { healthfitlabs.com.service._staticInstance._succeeded = value; }
healthfitlabs.com.service.get_defaultSucceededCallback = function() { return healthfitlabs.com.service._staticInstance._succeeded; }
healthfitlabs.com.service.set_defaultFailedCallback = function(value) { healthfitlabs.com.service._staticInstance._failed = value; }
healthfitlabs.com.service.get_defaultFailedCallback = function() { return healthfitlabs.com.service._staticInstance._failed; }
healthfitlabs.com.service.set_path("/service.asmx");
healthfitlabs.com.service.SubmitNewsletter= function(emailaddress,onSuccess,onFailed,userContext) {healthfitlabs.com.service._staticInstance.SubmitNewsletter(emailaddress,onSuccess,onFailed,userContext); }
