if(typeof AutoWeb == "undefined") AutoWeb={};
AutoWeb.Login_class = function() {};
Object.extend(AutoWeb.Login_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	AfterLoginActions: function() {
		return this.invoke("AfterLoginActions", {}, this.AfterLoginActions.getArguments().slice(0));
	},
	SetSender: function(senderXml) {
		return this.invoke("SetSender", {"senderXml":senderXml}, this.SetSender.getArguments().slice(1));
	},
	RaiseSenderAssociation: function() {
		return this.invoke("RaiseSenderAssociation", {}, this.RaiseSenderAssociation.getArguments().slice(0));
	},
	LoginUser: function(user, password) {
		return this.invoke("LoginUser", {"user":user, "password":password}, this.LoginUser.getArguments().slice(2));
	},
	url: '/AutoWeb/ajaxpro/AutoWeb.Login,AutoWeb.ashx'
}));
AutoWeb.Login = new AutoWeb.Login_class();

