%-- --%>
<%@ include file="getnutheader.html" %>
<%
String v_formula = request.getParameter("formula");
String v_access = request.getParameter("access");
String v_lang = request.getParameter("lang");
String v_mod = request.getParameter("mod");
String no_of_formula=request.getParameter("no_of_formula");
if (no_of_formula == null) {
no_of_formula = "all";
}
%>
<%--
You chose:
Access = <%= v_access %>
Language = <%= v_lang %>
Module = <%= v_mod %>
Formula = <%= v_formula %>
FormulaCount = <%= no_of_formula %>
--%>
<%
if (v_formula != null) {
%>
<%
}
%>
<% if (no_of_formula.equals("one")) {
if (v_formula.equals("BMI")) { %>
<%@ include file="bmi.jsp" %>
<% } else if (v_formula.equals("HBE")) { %>
<%@ include file="hbe.jsp" %>
<% } else if (v_formula.equals("MSE")) { %>
<%@ include file="msje.jsp" %>
<% } else if (v_formula.equals("KJ")) { %>
<%@ include file="kj.jsp" %>
<% } else if (v_formula.equals("WHR")) { %>
<%@ include file="whr.jsp" %>
<% } else if (v_formula.equals("WC")) { %>
<%@ include file="wc.jsp" %>
<% } %>
<% } else { %>
<%@ include file="wlformulas.html" %>
<% } %>
<%-- <%@ include file="/templates/footer.html" %> --%>