<%
If Session("userID") = "" Then
If Request("Update") = "True" Then
Response.Write "MRO Update User Registration"
Else
Response.Write "MRO New User Registration"
End If
Else
Response.Write "MRO Update User Registration"
End If
%>

<%
If Request("Update") = "True" Then
Response.Write "Please change your registration information as listed below "
Else
If Request("NotFound") = "True" Then
Response.Write "We were unable to locate your information. " & _
"Please take the time to register again. "
Else
Response.Write " (If you're already registered with us, " & _
"then click the 'Login' link below.)"
End If
Response.Write "To use the MRO facility, please provide the following information."
End If
%>

|