if(typeof SCEC == "undefined") SCEC={};
if(typeof SCEC.Web == "undefined") SCEC.Web={};
if(typeof SCEC.Web.UserControls == "undefined") SCEC.Web.UserControls={};
if(typeof SCEC.Web.UserControls.ucLogin == "undefined") SCEC.Web.UserControls.ucLogin={};
SCEC.Web.UserControls.ucLogin_class = function() {};
Object.extend(SCEC.Web.UserControls.ucLogin_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	GetUser: function() {
		return this.invoke("GetUser", {}, this.GetUser.getArguments().slice(0));
	},
	GetUserAndPassword: function() {
		return this.invoke("GetUserAndPassword", {}, this.GetUserAndPassword.getArguments().slice(0));
	},
	CheckLogin: function(strUserName, strPassword) {
		return this.invoke("CheckLogin", {"strUserName":strUserName, "strPassword":strPassword}, this.CheckLogin.getArguments().slice(2));
	},
	url: '/ajaxpro/SCEC.Web.UserControls.ucLogin,SCEC.Web.ashx'
}));
SCEC.Web.UserControls.ucLogin = new SCEC.Web.UserControls.ucLogin_class();

