if(typeof Nortech == "undefined") Nortech={};
if(typeof Nortech.LoginPage == "undefined") Nortech.LoginPage={};
Nortech.LoginPage_class = function() {};
Object.extend(Nortech.LoginPage_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	Login: function(UserName, Password) {
		return this.invoke("Login", {"UserName":UserName, "Password":Password}, this.Login.getArguments().slice(2));
	},
	CheckLogin: function() {
		return this.invoke("CheckLogin", {}, this.CheckLogin.getArguments().slice(0));
	},
	url: '/vbwrapper/Nortech.LoginPage,Nortech.ashx'
}));
Nortech.LoginPage = new Nortech.LoginPage_class();

