if(typeof product == "undefined") product={};
product_class = function() {};
Object.extend(product_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	ChangeSessionValue: function(CurType) {
		return this.invoke("ChangeSessionValue", {"CurType":CurType}, this.ChangeSessionValue.getArguments().slice(1));
	},
	GetSession: function() {
		return this.invoke("GetSession", {}, this.GetSession.getArguments().slice(0));
	},
	BuyProduct: function(ProductID) {
		return this.invoke("BuyProduct", {"ProductID":ProductID}, this.BuyProduct.getArguments().slice(1));
	},
	SubmitEmail: function(Email) {
		return this.invoke("SubmitEmail", {"Email":Email}, this.SubmitEmail.getArguments().slice(1));
	},
	url: '/ajaxpro/product,App_Web_65sto_gx.ashx'
}));
product = new product_class();


