addNamespace("RMT.Commons");
RMT.Commons.Users_class = Class.create();
RMT.Commons.Users_class.prototype = (new AjaxPro.Request()).extend({
	userLogin: function(name, password, vailcode, callback) {
		return this.invoke("userLogin", {"name":name, "password":password, "vailcode":vailcode}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/RMT.Commons.Users,RMTLib.ashx";
	}
})
RMT.Commons.Users = new RMT.Commons.Users_class();

