var Login = { ValidateLogin:function(sUserName,sUserPassword,callback,context){return new ajax_request(this.url + '?_method=ValidateLogin&_session=rw','sUserName=' + enc(sUserName)+ '\r\nsUserPassword=' + enc(sUserPassword),callback, context);}, UpdatePassword:function(sUSerId,sNewPassword,sPageVisited,sPageQueryString,sPlatForm,sReferrer,sHost,callback,context){return new ajax_request(this.url + '?_method=UpdatePassword&_session=rw','sUSerId=' + enc(sUSerId)+ '\r\nsNewPassword=' + enc(sNewPassword)+ '\r\nsPageVisited=' + enc(sPageVisited)+ '\r\nsPageQueryString=' + enc(sPageQueryString)+ '\r\nsPlatForm=' + enc(sPlatForm)+ '\r\nsReferrer=' + enc(sReferrer)+ '\r\nsHost=' + enc(sHost),callback, context);}, GetPasswordLength:function(callback,context){return new ajax_request(this.url + '?_method=GetPasswordLength&_session=rw','',callback, context);}, GetConfigValue:function(callback,context){return new ajax_request(this.url + '?_method=GetConfigValue&_session=rw','',callback, context);}, GetLoginPasswordAttempts:function(strUserName,callback,context){return new ajax_request(this.url + '?_method=GetLoginPasswordAttempts&_session=rw','strUserName=' + enc(strUserName),callback, context);}, ResetPasswordAttempt:function(iUserId,callback,context){return new ajax_request(this.url + '?_method=ResetPasswordAttempt&_session=rw','iUserId=' + enc(iUserId),callback, context);}, url:'/img2/ajax/UiInc.Cerecons.Web.Physician.Login,Cerecons.Web.ashx' }