if(typeof BrowseHistory == "undefined") BrowseHistory={};
BrowseHistory_class = function() {};
Object.extend(BrowseHistory_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	Add: function(productId, no, name, pic, pri) {
		return this.invoke("Add", {"productId":productId, "no":no, "name":name, "pic":pic, "pri":pri}, this.Add.getArguments().slice(5));
	},
	GetProducts: function() {
		return this.invoke("GetProducts", {}, this.GetProducts.getArguments().slice(0));
	},
	url: '/ajaxpro/BrowseHistory,App_Code.ashx'
}));
BrowseHistory = new BrowseHistory_class();

