var Extenders=function() {
Extenders.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
Extenders.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return Extenders._staticInstance.get_path();},
CartCountDisplay:function(succeededCallback, failedCallback, userContext) {
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'CartCountDisplay',false,{},succeededCallback,failedCallback,userContext); },
DoNewsletterRequest:function(nrpath,email,company,fName,lName,areaOfInterest,category,address,city,country,state,zip,phone,comments,succeededCallback, failedCallback, userContext) {
/// <param name="nrpath" type="String">System.String</param>
/// <param name="email" type="String">System.String</param>
/// <param name="company" type="String">System.String</param>
/// <param name="fName" type="String">System.String</param>
/// <param name="lName" type="String">System.String</param>
/// <param name="areaOfInterest" type="Array">System.String[]</param>
/// <param name="category" type="Array">System.String[]</param>
/// <param name="address" type="String">System.String</param>
/// <param name="city" type="String">System.String</param>
/// <param name="country" type="String">System.String</param>
/// <param name="state" type="String">System.String</param>
/// <param name="zip" type="String">System.String</param>
/// <param name="phone" type="String">System.String</param>
/// <param name="comments" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'DoNewsletterRequest',false,{nrpath:nrpath,email:email,company:company,fName:fName,lName:lName,areaOfInterest:areaOfInterest,category:category,address:address,city:city,country:country,state:state,zip:zip,phone:phone,comments:comments},succeededCallback,failedCallback,userContext); }}
Extenders.registerClass('Extenders',Sys.Net.WebServiceProxy);
Extenders._staticInstance = new Extenders();
Extenders.set_path = function(value) {
Extenders._staticInstance.set_path(value); }
Extenders.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return Extenders._staticInstance.get_path();}
Extenders.set_timeout = function(value) {
Extenders._staticInstance.set_timeout(value); }
Extenders.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return Extenders._staticInstance.get_timeout(); }
Extenders.set_defaultUserContext = function(value) { 
Extenders._staticInstance.set_defaultUserContext(value); }
Extenders.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return Extenders._staticInstance.get_defaultUserContext(); }
Extenders.set_defaultSucceededCallback = function(value) { 
 Extenders._staticInstance.set_defaultSucceededCallback(value); }
Extenders.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return Extenders._staticInstance.get_defaultSucceededCallback(); }
Extenders.set_defaultFailedCallback = function(value) { 
Extenders._staticInstance.set_defaultFailedCallback(value); }
Extenders.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return Extenders._staticInstance.get_defaultFailedCallback(); }
Extenders.set_enableJsonp = function(value) { Extenders._staticInstance.set_enableJsonp(value); }
Extenders.get_enableJsonp = function() { 
/// <value type="Boolean">Specifies whether the service supports JSONP for cross domain calling.</value>
return Extenders._staticInstance.get_enableJsonp(); }
Extenders.set_jsonpCallbackParameter = function(value) { Extenders._staticInstance.set_jsonpCallbackParameter(value); }
Extenders.get_jsonpCallbackParameter = function() { 
/// <value type="String">Specifies the parameter name that contains the callback function name for a JSONP request.</value>
return Extenders._staticInstance.get_jsonpCallbackParameter(); }
Extenders.set_path("/wsrv/Extenders.asmx");
Extenders.CartCountDisplay= function(onSuccess,onFailed,userContext) {
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Extenders._staticInstance.CartCountDisplay(onSuccess,onFailed,userContext); }
Extenders.DoNewsletterRequest= function(nrpath,email,company,fName,lName,areaOfInterest,category,address,city,country,state,zip,phone,comments,onSuccess,onFailed,userContext) {
/// <param name="nrpath" type="String">System.String</param>
/// <param name="email" type="String">System.String</param>
/// <param name="company" type="String">System.String</param>
/// <param name="fName" type="String">System.String</param>
/// <param name="lName" type="String">System.String</param>
/// <param name="areaOfInterest" type="Array">System.String[]</param>
/// <param name="category" type="Array">System.String[]</param>
/// <param name="address" type="String">System.String</param>
/// <param name="city" type="String">System.String</param>
/// <param name="country" type="String">System.String</param>
/// <param name="state" type="String">System.String</param>
/// <param name="zip" type="String">System.String</param>
/// <param name="phone" type="String">System.String</param>
/// <param name="comments" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Extenders._staticInstance.DoNewsletterRequest(nrpath,email,company,fName,lName,areaOfInterest,category,address,city,country,state,zip,phone,comments,onSuccess,onFailed,userContext); }

