addNamespace("Controls_CampusLoginCtl");
Controls_CampusLoginCtl_class = function() {};
Object.extend(Controls_CampusLoginCtl_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));
	},
	url: '/ajaxpro/Controls_CampusLoginCtl,winshr.Web.ashx'
}));
Controls_CampusLoginCtl = new Controls_CampusLoginCtl_class();

