' In IE: View/Source then cut and paste ' the code below from notepad ' return 1 for success ' returns 3 if user not found ' returns 6 if user found and wrong password ' returns 9 if user found and expired ' no need for caching here, AuthentiX takes care of that Public Function Authenticate(verifyArg As Long, _ username As String, _ password As String, _ ipAddress As String, _ userAgent As String, _ referrer As String, _ scriptName As String, _ ReservedReturn As String, _ bstrReserved1 As String, _ bstrReserved2 As String, _ longReserved1 As Long, _ longReserved2 As Long) _ As Integer If ("Brian" <> username) Then Authenticate = 3 ' bad username Exit Function End If If ("Young" <> password) Then Authenticate = 6 ' bad password Exit Function End If Authenticate = 1 ' success Exit Function End Function