addNamespace("Login");
Login_class = Class.create();
Login_class.prototype = (new AjaxPro.AjaxClass()).extend({
	GetYzCode: function() {
		return this.invoke("GetYzCode", {}, this.GetYzCode.getArguments().slice(0));
	},
	GetNameCode: function(username) {
		return this.invoke("GetNameCode", {"username":username}, this.GetNameCode.getArguments().slice(1));
	},
	GetPassWordCode: function(password, username) {
		return this.invoke("GetPassWordCode", {"password":password, "username":username}, this.GetPassWordCode.getArguments().slice(2));
	},
	userType: function() {
		return this.invoke("userType", {}, this.userType.getArguments().slice(0));
	},
	initialize: function() {
		this.url = '/ajaxpro/Login,App_Web_knv0w9zw.ashx';
	}
});
Login = new Login_class();

