var ActionService=function() {
ActionService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
ActionService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return ActionService._staticInstance.get_path();},
AddToCart:function(sProductId,sVariantId,sCartType,sQuantity,sShippingAddressId,sVariantStyle,textOption,sCustomerEnteredPrice,colorOptions,sizeOptions,upsellProductIds,sShoppingCartRecordId,sIsEditKit,kitItemValues,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'AddToCart',false,{sProductId:sProductId,sVariantId:sVariantId,sCartType:sCartType,sQuantity:sQuantity,sShippingAddressId:sShippingAddressId,sVariantStyle:sVariantStyle,textOption:textOption,sCustomerEnteredPrice:sCustomerEnteredPrice,colorOptions:colorOptions,sizeOptions:sizeOptions,upsellProductIds:upsellProductIds,sShoppingCartRecordId:sShoppingCartRecordId,sIsEditKit:sIsEditKit,kitItemValues:kitItemValues},succeededCallback,failedCallback,userContext); }}
ActionService.registerClass('ActionService',Sys.Net.WebServiceProxy);
ActionService._staticInstance = new ActionService();
ActionService.set_path = function(value) { ActionService._staticInstance.set_path(value); }
ActionService.get_path = function() { return ActionService._staticInstance.get_path(); }
ActionService.set_timeout = function(value) { ActionService._staticInstance.set_timeout(value); }
ActionService.get_timeout = function() { return ActionService._staticInstance.get_timeout(); }
ActionService.set_defaultUserContext = function(value) { ActionService._staticInstance.set_defaultUserContext(value); }
ActionService.get_defaultUserContext = function() { return ActionService._staticInstance.get_defaultUserContext(); }
ActionService.set_defaultSucceededCallback = function(value) { ActionService._staticInstance.set_defaultSucceededCallback(value); }
ActionService.get_defaultSucceededCallback = function() { return ActionService._staticInstance.get_defaultSucceededCallback(); }
ActionService.set_defaultFailedCallback = function(value) { ActionService._staticInstance.set_defaultFailedCallback(value); }
ActionService.get_defaultFailedCallback = function() { return ActionService._staticInstance.get_defaultFailedCallback(); }
ActionService.set_path("/actionservice.asmx");
ActionService.AddToCart= function(sProductId,sVariantId,sCartType,sQuantity,sShippingAddressId,sVariantStyle,textOption,sCustomerEnteredPrice,colorOptions,sizeOptions,upsellProductIds,sShoppingCartRecordId,sIsEditKit,kitItemValues,onSuccess,onFailed,userContext) {ActionService._staticInstance.AddToCart(sProductId,sVariantId,sCartType,sQuantity,sShippingAddressId,sVariantStyle,textOption,sCustomerEnteredPrice,colorOptions,sizeOptions,upsellProductIds,sShoppingCartRecordId,sIsEditKit,kitItemValues,onSuccess,onFailed,userContext); }

