if(typeof MyAjax == "undefined") MyAjax={};
MyAjax.WebAjax_class = function() {};
Object.extend(MyAjax.WebAjax_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	Cart_List: function(id, cou, tpy, cart) {
		return this.invoke("Cart_List", {"id":id, "cou":cou, "tpy":tpy, "cart":cart}, this.Cart_List.getArguments().slice(4));
	},
	AddCart: function(spid) {
		return this.invoke("AddCart", {"spid":spid}, this.AddCart.getArguments().slice(1));
	},
	Login: function(uname, psw, vcode, type0) {
		return this.invoke("Login", {"uname":uname, "psw":psw, "vcode":vcode, "type0":type0}, this.Login.getArguments().slice(4));
	},
	chkreg: function(uname) {
		return this.invoke("chkreg", {"uname":uname}, this.chkreg.getArguments().slice(1));
	},
	reguser: function(uname, psw) {
		return this.invoke("reguser", {"uname":uname, "psw":psw}, this.reguser.getArguments().slice(2));
	},
	Food_List: function(pageindex, page_size, t) {
		return this.invoke("Food_List", {"pageindex":pageindex, "page_size":page_size, "t":t}, this.Food_List.getArguments().slice(3));
	},
	url: '/ajaxpro/MyAjax.WebAjax,MyAjax.ashx'
}));
MyAjax.WebAjax = new MyAjax.WebAjax_class();

