addNamespace("buyinfo");
buyinfo_class = Class.create();
buyinfo_class.prototype = (new AjaxPro.Request()).extend({
	showrec: function(name, company, tel, email, code, subject, content, callback) {
		return this.invoke("showrec", {"name":name, "company":company, "tel":tel, "email":email, "code":code, "subject":subject, "content":content}, callback);
	},
	pagechangefun: function(kwyword, type, pagechangeno, pageno, callback) {
		return this.invoke("pagechangefun", {"kwyword":kwyword, "type":type, "pagechangeno":pagechangeno, "pageno":pageno}, callback);
	},
	pagenochange: function(keyword, type, pageno, callback) {
		return this.invoke("pagenochange", {"keyword":keyword, "type":type, "pageno":pageno}, callback);
	},
	recorddetail: function(id, callback) {
		return this.invoke("recorddetail", {"id":id}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/buyinfo,web_deploy.ashx";
	}
})
buyinfo = new buyinfo_class();

