MyAjax_class = function() {};
Object.extend(MyAjax_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	Search: function(productType, price1, price2, sort, order, typeIdCollection) {
		return this.invoke("Search", {"productType":productType, "price1":price1, "price2":price2, "sort":sort, "order":order, "typeIdCollection":typeIdCollection}, this.Search.getArguments().slice(6));
	},
	SearchProduct: function(productId) {
		return this.invoke("SearchProduct", {"productId":productId}, this.SearchProduct.getArguments().slice(1));
	},
	SerachCombineDiamond: function(DiamondId, RingId) {
		return this.invoke("SerachCombineDiamond", {"DiamondId":DiamondId, "RingId":RingId}, this.SerachCombineDiamond.getArguments().slice(2));
	},
	SearchHandShow: function() {
		return this.invoke("SearchHandShow", {}, this.SearchHandShow.getArguments().slice(0));
	},
	SearchClassType: function(MainType, SubType, Hotted) {
		return this.invoke("SearchClassType", {"MainType":MainType, "SubType":SubType, "Hotted":Hotted}, this.SearchClassType.getArguments().slice(3));
	},
	MakeTicket: function(id) {
		return this.invoke("MakeTicket", {"id":id}, this.MakeTicket.getArguments().slice(1));
	},
	CheckDB: function(tid) {
		return this.invoke("CheckDB", {"tid":tid}, this.CheckDB.getArguments().slice(1));
	},
	IpCheck: function(id) {
		return this.invoke("IpCheck", {"id":id}, this.IpCheck.getArguments().slice(1));
	},
	AddListItem: function(proid) {
		return this.invoke("AddListItem", {"proid":proid}, this.AddListItem.getArguments().slice(1));
	},
	url: '/ajaxpro/FuTai.Web.SearchHandler,FuTai.Web.ashx'
}));
MyAjax = new MyAjax_class();

