if(typeof Product == "undefined") Product={};
Product_class = function() {};
Object.extend(Product_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	SetFlag: function(id, flag) {
		return this.invoke("SetFlag", {"id":id, "flag":flag}, this.SetFlag.getArguments().slice(2));
	},
	Delete: function(id) {
		return this.invoke("Delete", {"id":id}, this.Delete.getArguments().slice(1));
	},
	url: '/crv/ajaxpro/Product,App_Code.ashx'
}));
Product = new Product_class();

