Type.registerNamespace('GoECartWebsite');
GoECartWebsite.GoECartEmailService=function() {
GoECartWebsite.GoECartEmailService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
GoECartWebsite.GoECartEmailService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return GoECartWebsite.GoECartEmailService._staticInstance.get_path();},
verifyEmail:function(strEmail,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'verifyEmail',false,{strEmail:strEmail},succeededCallback,failedCallback,userContext); },
StoreNewsletter:function(strFrom,strEmail,strFirstName,strLastName,strClientIP,strBrowserInfo,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'StoreNewsletter',false,{strFrom:strFrom,strEmail:strEmail,strFirstName:strFirstName,strLastName:strLastName,strClientIP:strClientIP,strBrowserInfo:strBrowserInfo},succeededCallback,failedCallback,userContext); }}
GoECartWebsite.GoECartEmailService.registerClass('GoECartWebsite.GoECartEmailService',Sys.Net.WebServiceProxy);
GoECartWebsite.GoECartEmailService._staticInstance = new GoECartWebsite.GoECartEmailService();
GoECartWebsite.GoECartEmailService.set_path = function(value) { GoECartWebsite.GoECartEmailService._staticInstance.set_path(value); }
GoECartWebsite.GoECartEmailService.get_path = function() { return GoECartWebsite.GoECartEmailService._staticInstance.get_path(); }
GoECartWebsite.GoECartEmailService.set_timeout = function(value) { GoECartWebsite.GoECartEmailService._staticInstance.set_timeout(value); }
GoECartWebsite.GoECartEmailService.get_timeout = function() { return GoECartWebsite.GoECartEmailService._staticInstance.get_timeout(); }
GoECartWebsite.GoECartEmailService.set_defaultUserContext = function(value) { GoECartWebsite.GoECartEmailService._staticInstance.set_defaultUserContext(value); }
GoECartWebsite.GoECartEmailService.get_defaultUserContext = function() { return GoECartWebsite.GoECartEmailService._staticInstance.get_defaultUserContext(); }
GoECartWebsite.GoECartEmailService.set_defaultSucceededCallback = function(value) { GoECartWebsite.GoECartEmailService._staticInstance.set_defaultSucceededCallback(value); }
GoECartWebsite.GoECartEmailService.get_defaultSucceededCallback = function() { return GoECartWebsite.GoECartEmailService._staticInstance.get_defaultSucceededCallback(); }
GoECartWebsite.GoECartEmailService.set_defaultFailedCallback = function(value) { GoECartWebsite.GoECartEmailService._staticInstance.set_defaultFailedCallback(value); }
GoECartWebsite.GoECartEmailService.get_defaultFailedCallback = function() { return GoECartWebsite.GoECartEmailService._staticInstance.get_defaultFailedCallback(); }
GoECartWebsite.GoECartEmailService.set_path("/GoECartEmailService.asmx");
GoECartWebsite.GoECartEmailService.verifyEmail= function(strEmail,onSuccess,onFailed,userContext) {GoECartWebsite.GoECartEmailService._staticInstance.verifyEmail(strEmail,onSuccess,onFailed,userContext); }
GoECartWebsite.GoECartEmailService.StoreNewsletter= function(strFrom,strEmail,strFirstName,strLastName,strClientIP,strBrowserInfo,onSuccess,onFailed,userContext) {GoECartWebsite.GoECartEmailService._staticInstance.StoreNewsletter(strFrom,strEmail,strFirstName,strLastName,strClientIP,strBrowserInfo,onSuccess,onFailed,userContext); }

