if(typeof getAjax == "undefined") getAjax={};
getAjax_class = function() {};
Object.extend(getAjax_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	AddToCart: function(guid, ip_id, count) {
		return this.invoke("AddToCart", {"guid":guid, "ip_id":ip_id, "count":count}, this.AddToCart.getArguments().slice(3));
	},
	UpdateCart: function(guid, ip_id, count) {
		return this.invoke("UpdateCart", {"guid":guid, "ip_id":ip_id, "count":count}, this.UpdateCart.getArguments().slice(3));
	},
	DeleteCart: function(ic_id) {
		return this.invoke("DeleteCart", {"ic_id":ic_id}, this.DeleteCart.getArguments().slice(1));
	},
	getState: function(_country_id) {
		return this.invoke("getState", {"_country_id":_country_id}, this.getState.getArguments().slice(1));
	},
	DeleteOrderById: function(io_id) {
		return this.invoke("DeleteOrderById", {"io_id":io_id}, this.DeleteOrderById.getArguments().slice(1));
	},
	url: '/ajaxpro/getAjax,App_Code.ashx'
}));
getAjax = new getAjax_class();

