addNamespace("newsibo");
newsibo.ajaxClass_class = Class.create();
newsibo.ajaxClass_class.prototype = (new AjaxPro.Request()).extend({
	Register: function(zhanghao, callback) {
		return this.invoke("Register", {"zhanghao":zhanghao}, callback);
	},
	usercheck: function(u_name, u_pass, callback) {
		return this.invoke("usercheck", {"u_name":u_name, "u_pass":u_pass}, callback);
	},
	Scfunction: function(u_name, product_id, callback) {
		return this.invoke("Scfunction", {"u_name":u_name, "product_id":product_id}, callback);
	},
	Scshop: function(u_name, biaoshi, product_id, title, sper, unit, color, price, num, tempsession, callback) {
		return this.invoke("Scshop", {"u_name":u_name, "biaoshi":biaoshi, "product_id":product_id, "title":title, "sper":sper, "unit":unit, "color":color, "price":price, "num":num, "tempsession":tempsession}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/newsibo.ajaxClass,newsibo.ashx";
	}
})
newsibo.ajaxClass = new newsibo.ajaxClass_class();

