addNamespace("Controls_LeftLoginCtl");
Controls_LeftLoginCtl_class = function() {};
Object.extend(Controls_LeftLoginCtl_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	CheckIsLogined: function() {
		return this.invoke("CheckIsLogined", {}, this.CheckIsLogined.getArguments().slice(0));
	},
	HunterLogin: function(username, passwd) {
		return this.invoke("HunterLogin", {"username":username, "passwd":passwd}, this.HunterLogin.getArguments().slice(2));
	},
	HunterLogout: function() {
		return this.invoke("HunterLogout", {}, this.HunterLogout.getArguments().slice(0));
	},
	GetLoginedHunter: function() {
		return this.invoke("GetLoginedHunter", {}, this.GetLoginedHunter.getArguments().slice(0));
	},
	GetHunterTrueName: function() {
		return this.invoke("GetHunterTrueName", {}, this.GetHunterTrueName.getArguments().slice(0));
	},
	CheckCorpIsLogined: function() {
		return this.invoke("CheckCorpIsLogined", {}, this.CheckCorpIsLogined.getArguments().slice(0));
	},
	CorpLogin: function(username, passwd) {
		return this.invoke("CorpLogin", {"username":username, "passwd":passwd}, this.CorpLogin.getArguments().slice(2));
	},
	CorpLogout: function() {
		return this.invoke("CorpLogout", {}, this.CorpLogout.getArguments().slice(0));
	},
	GetLoginedCorp: function() {
		return this.invoke("GetLoginedCorp", {}, this.GetLoginedCorp.getArguments().slice(0));
	},
	GetMemberLevel: function() {
		return this.invoke("GetMemberLevel", {}, this.GetMemberLevel.getArguments().slice(0));
	},
	GetUserTrueName: function() {
		return this.invoke("GetUserTrueName", {}, this.GetUserTrueName.getArguments().slice(0));
	},
	url: '/ajaxpro/Controls_LeftLoginCtl,winshr.Web.ashx'
}));
Controls_LeftLoginCtl = new Controls_LeftLoginCtl_class();

