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