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

