if(typeof MasterPage == "undefined") MasterPage={};
MasterPage_class = function() {};
Object.extend(MasterPage_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	LogOut: function(SessionId) {
		return this.invoke("LogOut", {"SessionId":SessionId}, this.LogOut.getArguments().slice(1));
	},
	CheckLogin: function(SessionId) {
		return this.invoke("CheckLogin", {"SessionId":SessionId}, this.CheckLogin.getArguments().slice(1));
	},
	url: '/ajaxpro/MasterPage,mccweb.ashx'
}));
MasterPage = new MasterPage_class();

