addNamespace("WebLeft");
WebLeft_class = Class.create();
WebLeft_class.prototype = (new AjaxPro.Request()).extend({
	UserLogin: function(UserName, Password, callback) {
		return this.invoke("UserLogin", {"UserName":UserName, "Password":Password}, callback);
	},
	UserLogout: function(UserName, Password, callback) {
		return this.invoke("UserLogout", {"UserName":UserName, "Password":Password}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/WebLeft,zqesl.ashx";
	}
})
WebLeft = new WebLeft_class();

