<%
' Set Initial Conditions
QueryForm = Request.ServerVariables("PATH_INFO")
FiO2 = ""
PaO2 = ""
NewQuery = FALSE
' Did the user press a SUBMIT button to execute the form? If so get the form variables.
if Request.ServerVariables("REQUEST_METHOD") = "POST" then
FiO2 = Request.Form("FiO2")
PaO2 = Request.Form("PaO2")
MAP = Request.Form("MAP")
NewQuery = TRUE
end if
%>