diff --git a/Survey/src/java/servlet/CallML.java b/Survey/src/java/servlet/CallML.java
deleted file mode 100644
index 862a56f13db8c617adb7e64d99915097a1f6ca73..0000000000000000000000000000000000000000
--- a/Survey/src/java/servlet/CallML.java
+++ /dev/null
@@ -1,226 +0,0 @@
-/*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
-package servlet;
-
-import java.io.BufferedReader;
-import java.io.File;
-import java.io.FileOutputStream;
-import java.io.IOException;
-import java.io.InputStream;
-import java.io.InputStreamReader;
-import java.io.OutputStream;
-import java.io.PrintWriter;
-import java.net.URL;
-import java.text.DateFormat;
-import java.text.SimpleDateFormat;
-import java.util.Date;
-import java.util.logging.Level;
-import java.util.logging.Logger;
-import javax.servlet.ServletContext;
-import javax.servlet.ServletException;
-import javax.servlet.annotation.WebServlet;
-import javax.servlet.http.HttpServlet;
-import javax.servlet.http.HttpServletRequest;
-import javax.servlet.http.HttpServletResponse;
-import javax.servlet.http.HttpSession;
-
-/**
- *
- * @author Cheng Guo
- */
-@WebServlet(name = "NewServlet2", urlPatterns = {"/NewServlet2"})
-public class CallML extends HttpServlet {
-
-    /**
-     * Processes requests for both HTTP
-     * <code>GET</code> and
-     * <code>POST</code> methods.
-     *
-     * @param request servlet request
-     * @param response servlet response
-     * @throws ServletException if a servlet-specific error occurs
-     * @throws IOException if an I/O error occurs
-     */
-    protected void processRequest(HttpServletRequest request, HttpServletResponse response)
-            throws ServletException, IOException, Exception {
-        ServletContext servletContext = getServletContext();
-        String contextPath = servletContext.getRealPath(File.separator);
-        response.setContentType("text/html;charset=UTF-8");
-        PrintWriter out = response.getWriter();
-        try {
-            String urlstr = request.getParameter("threadUrl");
-            URL url = new URL(urlstr);
-            InputStream is = (InputStream) url.getContent();
-            BufferedReader br = new BufferedReader(new InputStreamReader(is));
-            String line = null;
-            StringBuffer sb = new StringBuffer();
-            while ((line = br.readLine()) != null) {
-                sb.append(line);
-            }
-            String htmlContent = sb.toString();
-            ModificationValues mv = new ModificationValues();
-            mv.rootPath = contextPath;
-            String output = mv.findAllClasses(htmlContent);
-            out.println(output);
-
-            int index1 = output.indexOf(":");
-            int index2 = output.indexOf("@");
-            int index3 = output.indexOf("*");
-            int index4 = output.indexOf("%");
-            int index5 = output.indexOf("#");
-            String question = (output.substring(index2 + 9, index3)).toString();
-            String info = (output.substring(index4 + 10, index5)).toString();
-            Double percentexpert = Double.parseDouble(output.substring(index5 + 9));
-            Double percentexper = Double.parseDouble(output.substring(index3 + 13, index4));
-
-            HttpSession session = request.getSession(false);
-            String time = (String) session.getAttribute("currentSessionUser");
-            String path = request.getRealPath("/User");
-            File txt = new File(path + "/" + time + ".txt");
-            OutputStream file = new FileOutputStream(txt, true);
-            DateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
-            //get current date time with Date()
-            Date date = new Date();
-            String linkTime = dateFormat.format(date);
-            String query = request.getParameter("query");
-            String treatment = request.getParameter("treatment");
-            file.write(("<link>").getBytes());
-            file.write(("<url>").getBytes());
-            file.write(urlstr.getBytes());
-            file.write(("</url>").getBytes());
-            file.write(("<time>").getBytes());
-            file.write(linkTime.getBytes());
-            file.write(("</time>").getBytes());
-            file.write(("<type>").getBytes());
-            file.write("saw".getBytes());
-            file.write(("</type>").getBytes());
-            file.write(("<query>").getBytes());
-            file.write(query.getBytes());
-            file.write(("</query>").getBytes());
-            file.write(("<treatment>").getBytes());
-            file.write(treatment.getBytes());
-            file.write(("</treatment>").getBytes());
-//            file.write(("<question>").getBytes());
-//            if (question.equals("0.0")) {
-//                file.write("no".getBytes());
-//            } else {
-//                file.write("yes".getBytes());
-//            }
-//            file.write(("</question>").getBytes());
-            file.write(("<info>").getBytes());
-            if (info.equals("0.0")) {
-                file.write("no".getBytes());
-            } else {
-                file.write("yes".getBytes());
-            }
-            file.write(("</info>").getBytes());
-//            file.write(("<percentexpert>").getBytes());
-//            if (percentexpert == 0.0) {
-//                file.write(("000").getBytes());
-//            } else if (percentexpert > 0.0 && percentexpert < 0.15) {
-//                file.write(("010").getBytes());
-//            } else if (percentexpert >= 0.15 && percentexpert < 0.25) {
-//                file.write(("020").getBytes());
-//            } else if (percentexpert >= 0.25 && percentexpert < 0.35) {
-//                file.write(("030").getBytes());
-//            } else if (percentexpert >= 0.35 && percentexpert < 0.45) {
-//                file.write(("040").getBytes());
-//            } else if (percentexpert >= 0.45 && percentexpert < 0.55) {
-//                file.write(("050").getBytes());
-//            } else if (percentexpert >= 0.55 && percentexpert < 0.65) {
-//                file.write(("060").getBytes());
-//            } else if (percentexpert >= 0.65 && percentexpert < 0.75) {
-//                file.write(("070").getBytes());
-//            } else if (percentexpert >= 0.75 && percentexpert < 0.85) {
-//                file.write(("080").getBytes());
-//            } else if (percentexpert >= 0.85 && percentexpert < 0.95) {
-//                file.write(("090").getBytes());
-//            } else if (percentexpert >= 0.95 && percentexpert <= 1.00) {
-//                file.write(("100").getBytes());
-//            }
-//            file.write(("</percentexpert>").getBytes());
-            file.write(("<percentexper>").getBytes());
-            if (percentexper == 0.0) {
-                file.write(("000").getBytes());
-            } else if (percentexper > 0.0 && percentexper < 0.15) {
-                file.write(("010").getBytes());
-            } else if (percentexper >= 0.15 && percentexper < 0.25) {
-                file.write(("020").getBytes());
-            } else if (percentexper >= 0.25 && percentexper < 0.35) {
-                file.write(("030").getBytes());
-            } else if (percentexper >= 0.35 && percentexper < 0.45) {
-                file.write(("040").getBytes());
-            } else if (percentexper >= 0.45 && percentexper < 0.55) {
-                file.write(("050").getBytes());
-            } else if (percentexper >= 0.55 && percentexper < 0.65) {
-                file.write(("060").getBytes());
-            } else if (percentexper >= 0.65 && percentexper < 0.75) {
-                file.write(("070").getBytes());
-            } else if (percentexper >= 0.75 && percentexper < 0.85) {
-                file.write(("080").getBytes());
-            } else if (percentexper >= 0.85 && percentexper < 0.95) {
-                file.write(("090").getBytes());
-            } else if (percentexper >= 0.95 && percentexper <= 1.00) {
-                file.write(("100").getBytes());
-            }
-            file.write(("</percentexper>").getBytes());          
-            file.write(("</link>").getBytes());
-            file.write(System.getProperty("line.separator").getBytes());
-            file.close();
-
-        } finally {
-            out.close();
-        }
-    }
-
-    // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
-    /**
-     * Handles the HTTP
-     * <code>GET</code> method.
-     *
-     * @param request servlet request
-     * @param response servlet response
-     * @throws ServletException if a servlet-specific error occurs
-     * @throws IOException if an I/O error occurs
-     */
-    @Override
-    protected void doGet(HttpServletRequest request, HttpServletResponse response)
-            throws ServletException, IOException {
-        try {
-            processRequest(request, response);
-        } catch (Exception ex) {
-            Logger.getLogger(CallML.class.getName()).log(Level.SEVERE, null, ex);
-        }
-    }
-
-    /**
-     * Handles the HTTP
-     * <code>POST</code> method.
-     *
-     * @param request servlet request
-     * @param response servlet response
-     * @throws ServletException if a servlet-specific error occurs
-     * @throws IOException if an I/O error occurs
-     */
-    @Override
-    protected void doPost(HttpServletRequest request, HttpServletResponse response)
-            throws ServletException, IOException {
-        try {
-            processRequest(request, response);
-        } catch (Exception ex) {
-            Logger.getLogger(CallML.class.getName()).log(Level.SEVERE, null, ex);
-        }
-    }
-
-    /**
-     * Returns a short description of the servlet.
-     *
-     * @return a String containing servlet description
-     */
-    @Override
-    public String getServletInfo() {
-        return "Short description";
-    }// </editor-fold>
-}
diff --git a/Survey/src/java/servlet/Masking.java b/Survey/src/java/servlet/Masking.java
index 8230d036074b259265c4e9efbe67a39d4774f72f..0106e38cadd083dd203f3c25812877336dc5be5f 100644
--- a/Survey/src/java/servlet/Masking.java
+++ b/Survey/src/java/servlet/Masking.java
@@ -36,9 +36,8 @@ public class Masking extends HttpServlet {
     }
 
     /**
-     * Processes requests for both HTTP
-     * <code>GET</code> and
-     * <code>POST</code> methods.
+     * Processes requests for both HTTP <code>GET</code> and <code>POST</code>
+     * methods.
      *
      * @param request servlet request
      * @param response servlet response
@@ -49,7 +48,6 @@ public class Masking extends HttpServlet {
         //use jsoup to mask Lymenet 
         Document doc = Jsoup.connect(url).timeout(0).get();
 
-
         Element body = doc.select("body").first();
         body.attr("height", "96.5%");
         //add a navigation bar here
@@ -84,7 +82,6 @@ public class Masking extends HttpServlet {
 //                + "</div>"
 //                + "</div>"
 //                + "</div>");
-
         table.before("<div style='margin-left:3.5%;'><br><input type=\"button\" class=\"btn btn-large btn-primary\" value=\"Go back to the results\" onclick=\"window.open('', '_self', '');window.close();\"></div>");
 
         table.wrap("<div id=wrap style=margin-right:1%;margin-left:1%;min-height:100%;height:auto;margin-bottom:5px;></div>");
@@ -166,8 +163,6 @@ public class Masking extends HttpServlet {
         tr.select("img").remove();
 
         //remove IP
-
-
         //remove the bottom part
         Element quickReply = doc.select("div[id=quickreply]").first();
         if (quickReply != null) {
@@ -204,7 +199,7 @@ public class Masking extends HttpServlet {
                     String from = replaceText2.substring(index1, index2);
                     String replaceText3 = replaceText2.replaceAll("Registered:", "<span style=\"color:#0088CC\">Registered:</span>");
                     String registered = replaceText3.substring(index2);
-                    String replaceText4 = replaceText3.replaceAll("IP:Logged", " ");
+                    //String replaceText4 = replaceText3.replaceAll("IP:Logged", " ");
                     int index3 = replaceText3.indexOf("IP");
                     infoElement.get(i).html((posts + from + registered).substring(0, index3 - 3));
                 } else {
@@ -238,7 +233,6 @@ public class Masking extends HttpServlet {
 
         return doc.toString();
 
-
     }
 
     protected void processRequest(HttpServletRequest request, HttpServletResponse response)
@@ -248,32 +242,14 @@ public class Masking extends HttpServlet {
         try {
             PrintWriter out = response.getWriter();
             /* TODO output your page here. You may use following sample code. */
+            HttpSession session = request.getSession(false);
+            String time = (String) session.getAttribute("currentSessionUser");
             String url2 = request.getParameter("url");
-            System.out.println(url2);
             String term = request.getParameter("term");
-//            String seekInfo = request.getParameter("seekInfo");
-//            System.out.println(seekInfo);
-//            int index1 = seekInfo.indexOf("_");
-//            int index2 = seekInfo.indexOf(".");
-//            String question = seekInfo.substring(index1 + 1, index2);
             String infoLinks = request.getParameter("infoLinks");
-//            int index3 = infoLinks.indexOf("_");
-//            int index4 = infoLinks.indexOf(".");
-//            String info = infoLinks.substring(index3 + 1, index4);
-//            String prolific = request.getParameter("prolific");
-//            int index5 = prolific.indexOf("_");
-//            int index6 = prolific.indexOf(".");
-//            String percentexpert = prolific.substring(index5 + 1, index6);
             String experiential = request.getParameter("experiential");
-//            int index7 = experiential.indexOf("_");
-//            int index8 = experiential.indexOf(".");
-//            String percentexper = experiential.substring(index7 + 1, index8);
-            //System.out.println(url2);
-            //System.out.println(hyperbaricUrl);
             System.out.println(url2);
-            //write link and time into file
-            HttpSession session = request.getSession(false);
-            String time = (String) session.getAttribute("currentSessionUser");
+            //write link and time into file           
             String path = request.getRealPath("/User");
             File txt = new File(path + "/" + time + ".txt");
             OutputStream file = new FileOutputStream(txt, true);
@@ -298,15 +274,14 @@ public class Masking extends HttpServlet {
             file.write(("<term>").getBytes());
             file.write(term.getBytes());
             file.write(("</term>").getBytes());
-//            file.write(("<question>").getBytes());
-//            file.write(question.getBytes());
-//            file.write(("</question>").getBytes());
             file.write(("<info>").getBytes());
-            file.write(infoLinks.getBytes());
+            if ("0.0".equals(infoLinks)){
+                file.write(("No").getBytes());
+            }
+            else{
+                file.write(("Yes").getBytes());
+            }
             file.write(("</info>").getBytes());
-//            file.write(("<percentexpert>").getBytes());
-//            file.write(percentexpert.getBytes());
-//            file.write(("</percentexpert>").getBytes());
             file.write(("<percentexper>").getBytes());
             file.write(experiential.getBytes());
             file.write(("</percentexper>").getBytes());
@@ -315,10 +290,10 @@ public class Masking extends HttpServlet {
             out.println(Masking(url2));
             file.close();
 
-        } catch (Exception ex) {
+        } catch (IOException ex) {
             try {
                 throw ex;
-            } catch (Exception ex1) {
+            } catch (IOException ex1) {
                 Logger.getLogger(Masking.class.getName()).log(Level.SEVERE, null, ex1);
             }
         }
@@ -326,8 +301,7 @@ public class Masking extends HttpServlet {
 
     // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
     /**
-     * Handles the HTTP
-     * <code>GET</code> method.
+     * Handles the HTTP <code>GET</code> method.
      *
      * @param request servlet request
      * @param response servlet response
@@ -341,8 +315,7 @@ public class Masking extends HttpServlet {
     }
 
     /**
-     * Handles the HTTP
-     * <code>POST</code> method.
+     * Handles the HTTP <code>POST</code> method.
      *
      * @param request servlet request
      * @param response servlet response
diff --git a/Survey/src/java/servlet/Ml1.java b/Survey/src/java/servlet/Ml1.java
index 30c1b3c4a6c791c79e24f2f7187aef1b36c3ddfc..a17bec41b0a0b3897acc8ee4a07dfa7a1b8492ed 100644
--- a/Survey/src/java/servlet/Ml1.java
+++ b/Survey/src/java/servlet/Ml1.java
@@ -78,10 +78,17 @@ public class Ml1 extends HttpServlet {
                 String newLine;
                 newBr = new BufferedReader(new FileReader(oldFileName));
                 bw = new BufferedWriter(new FileWriter(tempFileName));
+                String infoValue;
+                if ("0.0".equals(info)){
+                    infoValue = "No";
+                }
+                else{
+                    infoValue = "Yes";
+                }
                 if (!"null".equals(currentUser)) {
                     while ((newLine = newBr.readLine()) != null) {
                         if (newLine.contains(url)) {
-                            newLine = newLine.replace("<info></info>", "<info>" + info + "</info>").replace("<percentexper></percentexper>", "<percentexper>" + percentexper + "</percentexper>");
+                            newLine = newLine.replace("<info></info>", "<info>" + infoValue + "</info>").replace("<percentexper></percentexper>", "<percentexper>" + percentexper + "</percentexper>");
                         }
                         bw.write(newLine + "\n");
                     }
diff --git a/Survey/src/java/servlet/Ml3.java b/Survey/src/java/servlet/Ml3.java
index 0664dc655415b261330f5e6e0c6913b3bd7743d0..eb8b202d0e461939fd4355041c27725f3de000ca 100644
--- a/Survey/src/java/servlet/Ml3.java
+++ b/Survey/src/java/servlet/Ml3.java
@@ -77,10 +77,17 @@ public class Ml3 extends HttpServlet {
                 String newLine;
                 newBr = new BufferedReader(new FileReader(oldFileName));
                 bw = new BufferedWriter(new FileWriter(tempFileName));
+                String infoValue;
+                if ("0.0".equals(info)){
+                    infoValue = "No";
+                }
+                else{
+                    infoValue = "Yes";
+                }
 
                 while ((newLine = newBr.readLine()) != null) {
                     if (newLine.contains(url)) {
-                        newLine = newLine.replace("<info></info>", "<info>" + info + "</info>").replace("<percentexper></percentexper>", "<percentexper>" + percentexper + "</percentexper>");
+                        newLine = newLine.replace("<info></info>", "<info>" + infoValue + "</info>").replace("<percentexper></percentexper>", "<percentexper>" + percentexper + "</percentexper>");
                     }
                     bw.write(newLine + "\n");
                 }
diff --git a/Survey/src/java/servlet/Search3.java b/Survey/src/java/servlet/Search3.java
index b8287ca5acec5b2c7cdb2e0ca2477b33e8e14213..a9a8dfb65a961b146d11ef98f82b722da87389fa 100644
--- a/Survey/src/java/servlet/Search3.java
+++ b/Survey/src/java/servlet/Search3.java
@@ -126,7 +126,7 @@ public class Search3 extends HttpServlet {
             file.write(query.getBytes());
             file.write(("</query>").getBytes());
             file.write(("<term>").getBytes());
-            file.write(("treatment").getBytes());
+            file.write(("diagnosis").getBytes());
             file.write(("</term>").getBytes());
             file.write(("<info>").getBytes());
             file.write(("</info>").getBytes());
@@ -149,7 +149,7 @@ public class Search3 extends HttpServlet {
             file.write(query.getBytes());
             file.write(("</query>").getBytes());
             file.write(("<term>").getBytes());
-            file.write(("treatment").getBytes());
+            file.write(("diagnosis").getBytes());
             file.write(("</term>").getBytes());
             file.write(("<info>").getBytes());
             file.write(("</info>").getBytes());
@@ -172,7 +172,7 @@ public class Search3 extends HttpServlet {
             file.write(query.getBytes());
             file.write(("</query>").getBytes());
             file.write(("<term>").getBytes());
-            file.write(("treatment").getBytes());
+            file.write(("diagnosis").getBytes());
             file.write(("</term>").getBytes());
             file.write(("<info>").getBytes());
             file.write(("</info>").getBytes());
@@ -195,7 +195,7 @@ public class Search3 extends HttpServlet {
             file.write(query.getBytes());
             file.write(("</query>").getBytes());
             file.write(("<term>").getBytes());
-            file.write(("treatment").getBytes());
+            file.write(("diagnosis").getBytes());
             file.write(("</term>").getBytes());
             file.write(("<info>").getBytes());
             file.write(("</info>").getBytes());
@@ -218,7 +218,7 @@ public class Search3 extends HttpServlet {
             file.write(query.getBytes());
             file.write(("</query>").getBytes());
             file.write(("<term>").getBytes());
-            file.write(("treatment").getBytes());
+            file.write(("diagnosis").getBytes());
             file.write(("</term>").getBytes());
             file.write(("<info>").getBytes());
             file.write(("</info>").getBytes());
@@ -241,7 +241,7 @@ public class Search3 extends HttpServlet {
             file.write(query.getBytes());
             file.write(("</query>").getBytes());
             file.write(("<term>").getBytes());
-            file.write(("treatment").getBytes());
+            file.write(("diagnosis").getBytes());
             file.write(("</term>").getBytes());
             file.write(("<info>").getBytes());
             file.write(("</info>").getBytes());
@@ -264,7 +264,7 @@ public class Search3 extends HttpServlet {
             file.write(query.getBytes());
             file.write(("</query>").getBytes());
             file.write(("<term>").getBytes());
-            file.write(("treatment").getBytes());
+            file.write(("diagnosis").getBytes());
             file.write(("</term>").getBytes());
             file.write(("<info>").getBytes());
             file.write(("</info>").getBytes());
@@ -287,7 +287,7 @@ public class Search3 extends HttpServlet {
             file.write(query.getBytes());
             file.write(("</query>").getBytes());
             file.write(("<term>").getBytes());
-            file.write(("treatment").getBytes());
+            file.write(("diagnosis").getBytes());
             file.write(("</term>").getBytes());
             file.write(("<info>").getBytes());
             file.write(("</info>").getBytes());
@@ -310,7 +310,7 @@ public class Search3 extends HttpServlet {
             file.write(query.getBytes());
             file.write(("</query>").getBytes());
             file.write(("<term>").getBytes());
-            file.write(("treatment").getBytes());
+            file.write(("diagnosis").getBytes());
             file.write(("</term>").getBytes());
             file.write(("<info>").getBytes());
             file.write(("</info>").getBytes());
@@ -333,7 +333,7 @@ public class Search3 extends HttpServlet {
             file.write(query.getBytes());
             file.write(("</query>").getBytes());
             file.write(("<term>").getBytes());
-            file.write(("treatment").getBytes());
+            file.write(("diagnosis").getBytes());
             file.write(("</term>").getBytes());
             file.write(("<info>").getBytes());
             file.write(("</info>").getBytes());
diff --git a/Survey/web/WEB-INF/web.xml b/Survey/web/WEB-INF/web.xml
index 11dbe0d84bb7ca7a4085713c78b59f2f31a942a0..dfc6c5837405d41a2ad5a24e0248f765951a4228 100644
--- a/Survey/web/WEB-INF/web.xml
+++ b/Survey/web/WEB-INF/web.xml
@@ -87,17 +87,11 @@
         <servlet-name>task</servlet-name>
         <url-pattern>/task</url-pattern>
     </servlet-mapping>
-    <servlet>
-        <description/>
-        <display-name>CallML</display-name>
-        <servlet-name>CallML</servlet-name>
-        <servlet-class>servlet.CallML</servlet-class>
-    </servlet>
     <servlet-mapping>
-        <servlet-name>CallML</servlet-name>
-        <url-pattern>/CallML</url-pattern>
+        <servlet-name>Conclusion</servlet-name>
+        <url-pattern>/Conclusion</url-pattern>
     </servlet-mapping>
-    <servlet>
+<servlet>
         <description/>
         <display-name>Conclusion</display-name>
         <servlet-name>Conclusion</servlet-name>
@@ -107,4 +101,5 @@
         <servlet-name>Conclusion</servlet-name>
         <url-pattern>/Conclusion</url-pattern>
     </servlet-mapping>
+
 </web-app>
diff --git a/Survey/web/conclusion.jsp b/Survey/web/conclusion.jsp
index f19ca1c501e14a01ff3010c68cba75faa532a5fb..010b8448fb3bf060e76abf4d8d144cfe7ea0d455 100644
--- a/Survey/web/conclusion.jsp
+++ b/Survey/web/conclusion.jsp
@@ -502,7 +502,7 @@
 
                     <input type="button" name="next1" class="btn btn-large btn-primary"  value="Next &raquo;" onclick="showContent('2');
                                             hideContent('1');
-                                            getTime();">
+                                            getTime();"><br><br>Page<font color="#0088CC"> 9 </font> of <font color="#0088CC"> 10</font>
                 </div>
 
                 <div id="2" class="container" style="margin-left: 2.5%; max-width:90%; display: none;">
@@ -542,7 +542,7 @@
 
                     <h4>The raffle for four prizes of <font color="#8A0808">$50</font> each will be drawn after all study responses have been collected. The probability of being selected for one of these prizes is no worse than 1/100.</h4><br>
 
-                    <p><input type="submit" name="decision" class="btn btn-large btn-primary" value="Submit &raquo;"></p>
+                    <p><input type="submit" name="decision" class="btn btn-large btn-primary" value="Submit &raquo;"><br><br>Page<font color="#0088CC"> 10 </font> of <font color="#0088CC"> 10</font></p>
                 </div>
             </form>
         </div>
diff --git a/Survey/web/postTask.jsp b/Survey/web/postTask.jsp
index 8d6afa39ca1a65e29bf2dad65344d66d92bdb944..77826adeb0e6c05ec94d7d2b224b66d1d88a5078 100644
--- a/Survey/web/postTask.jsp
+++ b/Survey/web/postTask.jsp
@@ -325,7 +325,7 @@
                         </tr>
                     </table><br>
                         
-                    <input type="submit" class="btn btn-large btn-primary" value="Next &raquo;"></a>
+                    <input type="submit" class="btn btn-large btn-primary" value="Next &raquo;"><br><br>Page<font color="#0088CC"> 8 </font> of <font color="#0088CC"> 10</font>
                 </div>               
             </form>
         </div>   
diff --git a/Survey/web/preSurvey.jsp b/Survey/web/preSurvey.jsp
index 19e87e06c6d52301bb638f7a5868d005e58b1040..6479baa18d6ce1a22bed20d1aef1c41d3dfb4f0d 100644
--- a/Survey/web/preSurvey.jsp
+++ b/Survey/web/preSurvey.jsp
@@ -52,8 +52,8 @@
         </style>
 
         <script type="text/javascript">
-            
-             function noBack() {
+
+            function noBack() {
                 window.history.forward(1);
             }
 
@@ -65,8 +65,8 @@
                 }
 
                 if ((window.event.altKey) &&
-                        ((window.event.keyCode === 37) || 
-                                (window.event.keyCode === 39))) {  
+                        ((window.event.keyCode === 37) ||
+                                (window.event.keyCode === 39))) {
                     alert("Please do not hit back. You will have to begin again.");
                     event.returnValue = false;
                 }
@@ -157,277 +157,6 @@
                         </tr>
                     </table><br>
 
-                    <!--                    <h4>How much do you agree with the following statements about health forums?</h4><br>
-                                        <table style="height:100%;table-layout:fixed">
-                                            <tr>
-                                                <td></td>
-                                                <td align="center" width="100px"><font color="#0088CC"><b>Strongly disagree</b></font></td>
-                                                <td align="center" width="100px"><font color="#0088CC"><b>Somewhat disagree</b></font></td>
-                                                <td align="center" width="100px"><font color="#0088CC"><b>Neither agree nor disagree</b></font></td>
-                                                <td align="center" width="100px"><font color="#0088CC"><b>Somewhat agree</b></font></td>
-                                                <td align="center" width="100px"><font color="#0088CC"><b>Strongly agree</b></font></td>
-                                            </tr>
-                    
-                                            <tr>
-                                                <td style=" height:35pt;">
-                                                    In general, most health forum members who answer questions are competent in their responses.
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_competence1" value="0Strongly disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_competence1" value="1Somewhat disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_competence1" value="2Neither agree nor disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_competence1" value="3Somewhat agree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_competence1" value="4Strongly agree"/>
-                                                </td>
-                                            </tr>
-                                            <tr style="height:5px"></tr>
-                                            <tr>
-                                                <td style=" height:35pt;">
-                                                    I am comfortable relying on online forum members to provide honest and complete descriptions of their experiences.
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_integrity1" value="0Strongly disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_integrity1" value="1Somewhat disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_integrity1" value="2Neither agree nor disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_integrity1" value="3Somewhat agree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_integrity1" value="4Strongly agree"/>
-                                                </td>
-                                            </tr>
-                                            <tr style="height:5px"></tr>
-                                            <tr>
-                                                <td style=" height:35pt;">
-                                                    I always feel confident that I can rely on health forum members to stand behind the experiences they describe.
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_integrity2" value="0Strongly disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_integrity2" value="1Somewhat disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_integrity2" value="2Neither agree nor disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_integrity2" value="3Somewhat agree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_integrity2" value="4Strongly agree"/>
-                                                </td>
-                                            </tr>
-                                            <tr style="height:5px"></tr>
-                                            <tr>
-                                                <td style=" height:35pt;">
-                                                    I feel good about the information I find on health forums.
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_general1" value="0Strongly disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_general1" value="1Somewhat disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_general1" value="2Neither agree nor disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_general1" value="3Somewhat agree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_general1" value="4Strongly agree"/>
-                                                </td>
-                                            </tr>
-                                            <tr style="height:5px"></tr>
-                                            <tr>
-                                                <td style=" height:35pt;">
-                                                    Most health forum members do a capable job at meeting other members’ needs.
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_competence2" value="0Strongly disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_competence2" value="1Somewhat disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_competence2" value="2Neither agree nor disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_competence2" value="3Somewhat agree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_competence2" value="4Strongly agree"/>
-                                                </td>
-                                            </tr>
-                                            <tr style="height:5px"></tr>
-                                            <tr>
-                                                <td style=" height:35pt;">
-                                                    Most health forum members are interested in their fellow members' well-being, not just their own well-being.
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_benevolence1" value="0Strongly disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_benevolence1" value="1Somewhat disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_benevolence1" value="2Neither agree nor disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_benevolence1" value="3Somewhat agree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_benevolence1" value="4Strongly agree"/>
-                                                </td>
-                                            </tr>
-                                            <tr style="height:5px"></tr>
-                                            <tr>
-                                                <td></td>
-                                                <td align="center" width="100px"><font color="#0088CC"><b>Strongly disagree</b></font></td>
-                                                <td align="center" width="100px"><font color="#0088CC"><b>Somewhat disagree</b></font></td>
-                                                <td align="center" width="100px"><font color="#0088CC"><b>Neither agree nor disagree</b></font></td>
-                                                <td align="center" width="100px"><font color="#0088CC"><b>Somewhat agree</b></font></td>
-                                                <td align="center" width="100px"><font color="#0088CC"><b>Strongly agree</b></font></td>
-                                            </tr>
-                                            <tr>
-                                                <td style=" height:35pt;">
-                                                    I feel that most health forum members are good at providing relevant, useful information.
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_competence3" value="0Strongly disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_competence3" value="1Somewhat disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_competence3" value="2Neither agree nor disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_competence3" value="3Somewhat agree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_competence3" value="4Strongly agree"/>
-                                                </td>
-                                            </tr>
-                                            <tr style="height:5px"></tr>
-                                            <tr>
-                                                <td style=" height:35pt;">
-                                                    Health forum members generally write honestly about their experiences.
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_integrity3" value="0Strongly disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_integrity3" value="1Somewhat disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_integrity3" value="2Neither agree nor disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_integrity3" value="3Somewhat agree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_integrity3" value="4Strongly agree"/>
-                                                </td>
-                                            </tr>
-                                            <tr style="height:5px"></tr>
-                                            <tr>
-                                                <td style=" height:35pt;">
-                                                    I feel that most health forum members would act in a fellow member’s best interest.
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_benevolence2" value="0Strongly disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_benevolence2" value="1Somewhat disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_benevolence2" value="2Neither agree nor disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_benevolence2" value="3Somewhat agree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_benevolence2" value="4Strongly agree"/>
-                                                </td>
-                                            </tr>
-                                            <tr style="height:5px"></tr>
-                                            <tr>
-                                                <td style=" height:35pt;">
-                                                    I am comfortable making health decisions based on information I find on health forums.
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_general2" value="0Strongly disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_general2" value="1Somewhat disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_general2" value="2Neither agree nor disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_general2" value="3Somewhat agree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_general2" value="4Strongly agree"/>
-                                                </td>
-                                            </tr>
-                                            <tr style="height:5px"></tr>
-                                            <tr>
-                                                <td style=" height:35pt;">
-                                                    I always feel confident that I can rely on health forum members to do their part when I interact with them.
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_integrity4" value="0Strongly disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_integrity4" value="1Somewhat disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_integrity4" value="2Neither agree nor disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_integrity4" value="3Somewhat agree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_integrity4" value="4Strongly agree"/>
-                                                </td>
-                                            </tr>
-                                            <tr style="height:5px"></tr>
-                                            <tr>
-                                                <td style=" height:35pt;">
-                                                    If a fellow member required help, most health forum members would do their best to help.
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_benevolence3" value="0Strongly disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_benevolence3" value="1Somewhat disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_benevolence3" value="2Neither agree nor disagree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_benevolence3" value="3Somewhat agree"/>
-                                                </td>
-                                                <td align="center">
-                                                    <input type="radio" name="healthForum_benevolence3" value="4Strongly agree"/>
-                                                </td>
-                                            </tr>
-                                        </table><br>-->
                     <h4>Think of a health forum. What is it?</h4>
                     <table>
                         <tr>
@@ -779,20 +508,20 @@
                             </td>
                         </tr>
                     </table><br>
-                    
+
                     <h4>Think of a health website. What is it?</h4>
                     <table>
                         <tr>
                             <td>
                                 <input type="text" name="nameOfSite"
-                    class="input-xxlarge search-query"
-                    placeholder="Please Specify (leave blank if you do not use health websites).">
+                                       class="input-xxlarge search-query"
+                                       placeholder="Please Specify (leave blank if you do not use health websites).">
                             </td>
                         </tr>
                     </table><br>
-                    
+
                     <h4>If you named a health website, how much do you agree
-                    with the following statements about the website?</h4><br>
+                        with the following statements about the website?</h4><br>
                     <table style="height:100%;table-layout:fixed">
                         <tr>
                             <td></td>
@@ -879,7 +608,7 @@
                         <tr>
                             <td style=" height:35pt;">
                                 I feel good about the information I
-                            find on that website.
+                                find on that website.
                             </td>
                             <td align="center">
                                 <input type="radio" name="healthWebsite_general1" value="0Strongly disagree"/>
@@ -986,7 +715,7 @@
                         <tr>
                             <td style=" height:35pt;">
                                 That website maintains the accuracy of
-                            its information.
+                                its information.
                             </td>
                             <td align="center">
                                 <input type="radio" name="healthWebsite_integrity3" value="0Strongly disagree"/>
@@ -1035,8 +764,8 @@
                         <tr>
                             <td style=" height:35pt;">
                                 I am comfortable making health
-                            decisions based on information I find on
-                            that  website.
+                                decisions based on information I find on
+                                that  website.
                             </td>
                             <td align="center">
                                 <input type="radio" name="healthWebsite_general2" value="0Strongly disagree"/>
@@ -1107,281 +836,9 @@
                         </tr>
                     </table><br>
 
-<!--                    <h4>How much do you agree with the following statements about health websites (as defined in the previous question)?</h4><br>
-                    <table style="height:100%;table-layout:fixed">
-                        <tr>
-                            <td></td>
-                            <td align="center" width="100px"><font color="#0088CC"><b>Strongly disagree</b></font></td>
-                            <td align="center" width="100px"><font color="#0088CC"><b>Somewhat disagree</b></font></td>
-                            <td align="center" width="100px"><font color="#0088CC"><b>Neither agree nor disagree</b></font></td>
-                            <td align="center" width="100px"><font color="#0088CC"><b>Somewhat agree</b></font></td>
-                            <td align="center" width="100px"><font color="#0088CC"><b>Strongly agree</b></font></td>
-                        </tr>
-
-                        <tr>
-                            <td style=" height:35pt;">
-                                In general, most health websites are competent in the information they provide.
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_competence1" value="0Strongly disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_competence1" value="1Somewhat disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_competence1" value="2Neither agree nor disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_competence1" value="3Somewhat agree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_competence1" value="4Strongly agree"/>
-                            </td>
-                        </tr>
-                        <tr style="height:5px"></tr>
-                        <tr>
-                            <td style=" height:35pt;">
-                                I am comfortable relying on health websites to provide unbiased information.
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_integrity1" value="0Strongly disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_integrity1" value="1Somewhat disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_integrity1" value="2Neither agree nor disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_integrity1" value="3Somewhat agree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_integrity1" value="4Strongly agree"/>
-                            </td>
-                        </tr>
-                        <tr style="height:5px"></tr>
-                        <tr>
-                            <td style=" height:35pt;">
-                                I always feel confident that I can rely on health websites to stand behind the information on their websites.
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_integrity2" value="0Strongly disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_integrity2" value="1Somewhat disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_integrity2" value="2Neither agree nor disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_integrity2" value="3Somewhat agree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_integrity2" value="4Strongly agree"/>
-                            </td>
-                        </tr>
-                        <tr style="height:5px"></tr>
-                        <tr>
-                            <td style=" height:35pt;">
-                                I feel good about the information I find on health websites.
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_general1" value="0Strongly disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_general1" value="1Somewhat disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_general1" value="2Neither agree nor disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_general1" value="3Somewhat agree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_general1" value="4Strongly agree"/>
-                            </td>
-                        </tr>
-                        <tr style="height:5px"></tr>
-                        <tr>
-                            <td style=" height:35pt;">
-                                Most health websites do a capable job at meeting user needs.
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_competence2" value="0Strongly disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_competence2" value="1Somewhat disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_competence2" value="2Neither agree nor disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_competence2" value="3Somewhat agree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_competence2" value="4Strongly agree"/>
-                            </td>
-                        </tr>
-                        <tr style="height:5px"></tr>
-                        <tr>
-                            <td style=" height:35pt;">
-                                Most health websites are interested in their users' well-being, not just their own well-being.
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_benevolence1" value="0Strongly disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_benevolence1" value="1Somewhat disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_benevolence1" value="2Neither agree nor disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_benevolence1" value="3Somewhat agree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_benevolence1" value="4Strongly agree"/>
-                            </td>
-                        </tr>
-                        <tr style="height:5px"></tr>
-                        <tr>
-                            <td></td>
-                            <td align="center" width="100px"><font color="#0088CC"><b>Strongly disagree</b></font></td>
-                            <td align="center" width="100px"><font color="#0088CC"><b>Somewhat disagree</b></font></td>
-                            <td align="center" width="100px"><font color="#0088CC"><b>Neither agree nor disagree</b></font></td>
-                            <td align="center" width="100px"><font color="#0088CC"><b>Somewhat agree</b></font></td>
-                            <td align="center" width="100px"><font color="#0088CC"><b>Strongly agree</b></font></td>
-                        </tr>
-
-                        <tr>
-                            <td style=" height:35pt;">
-                                I feel that most health websites are good at providing relevant, useful information.
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_competence3" value="0Strongly disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_competence3" value="1Somewhat disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_competence3" value="2Neither agree nor disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_competence3" value="3Somewhat agree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_competence3" value="4Strongly agree"/>
-                            </td>
-                        </tr>
-                        <tr style="height:5px"></tr>
-                        <tr>
-                            <td style=" height:35pt;">
-                                Health websites generally maintain the accuracy of their information.
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_integrity3" value="0Strongly disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_integrity3" value="1Somewhat disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_integrity3" value="2Neither agree nor disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_integrity3" value="3Somewhat agree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_integrity3" value="4Strongly agree"/>
-                            </td>
-                        </tr>
-                        <tr style="height:5px"></tr>
-                        <tr>
-                            <td style=" height:35pt;">
-                                I feel that most health websites would act in their users' best interest.
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_benevolence2" value="0Strongly disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_benevolence2" value="1Somewhat disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_benevolence2" value="2Neither agree nor disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_benevolence2" value="3Somewhat agree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_benevolence2" value="4Strongly agree"/>
-                            </td>
-                        </tr>
-                        <tr style="height:5px"></tr>
-                        <tr>
-                            <td style=" height:35pt;">
-                                I am comfortable making health decisions based on information I find on health websites.
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_general2" value="0Strongly disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_general2" value="1Somewhat disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_general2" value="2Neither agree nor disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_general2" value="3Somewhat agree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_general2" value="4Strongly agree"/>
-                            </td>
-                        </tr>
-                        <tr style="height:5px"></tr>
-                        <tr>
-                            <td style=" height:35pt;">
-                                I always feel confident that I can rely on health websites to do their part when I interact with them.
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_integrity4" value="0Strongly disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_integrity4" value="1Somewhat disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_integrity4" value="2Neither agree nor disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_integrity4" value="3Somewhat agree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_integrity4" value="4Strongly agree"/>
-                            </td>
-                        </tr>
-                        <tr style="height:5px"></tr>
-                        <tr>
-                            <td style=" height:35pt;">
-                                If a user required help, most health websites would do their best to help.
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_benevolence3" value="0Strongly disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_benevolence3" value="1Somewhat disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_benevolence3" value="2Neither agree nor disagree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_benevolence3" value="3Somewhat agree"/>
-                            </td>
-                            <td align="center">
-                                <input type="radio" name="healthWebsite_benevolence3" value="4Strongly agree"/>
-                            </td>
-                        </tr>
-                    </table><br>-->
                     <input type="button" class="btn btn-large btn-primary" value="Next &raquo;" onclick="showContent('4');
-                hideContent('3');
-                scroll(0, 0);">
+                            hideContent('3');
+                            scroll(0, 0);"><br><br>Page<font color="#0088CC"> 1 </font> of <font color="#0088CC"> 10</font>
                 </div>
 
                 <div id="4" class="container" style="margin-left:2.5%; max-width:95%; display:none;">
@@ -1520,8 +977,8 @@
                     </table><br><br>
 
                     <input type="button" class="btn btn-large btn-primary" value="Next &raquo;" onclick="showContent('5');
-                hideContent('4');
-                scroll(0, 0);">
+                            hideContent('4');
+                            scroll(0, 0);"><br><br>Page<font color="#0088CC"> 2 </font> of <font color="#0088CC"> 10</font>
                 </div>
 
                 <div id="5" class="container" style="margin-left:2.5%; max-width:95%; display:none;">                    
@@ -1909,8 +1366,8 @@
                         </div>
                     </table><br>
                     <input type="button" class="btn btn-large btn-primary" value="Next &raquo;" onclick="showContent('6');
-                hideContent('5');
-                scroll(0, 0);">
+                            hideContent('5');
+                            scroll(0, 0);"><br><br>Page<font color="#0088CC"> 3 </font> of <font color="#0088CC"> 10</font>
                 </div>
 
                 <div id="6" class="container" style="margin-left:2.5%; max-width:95%; display:none;">                    
@@ -2247,8 +1704,8 @@
                         </div>
                     </table><br>
                     <input type="button" class="btn btn-large btn-primary" value="Next &raquo;" onclick="showContent('7');
-                hideContent('6');
-                scroll(0, 0);">
+                            hideContent('6');
+                            scroll(0, 0);"><br><br>Page<font color="#0088CC"> 4 </font> of <font color="#0088CC"> 10</font>
                 </div>
 
                 <div id="7" class="container" style="margin-left:2.5%; max-width:95%; display:none;">
@@ -2474,7 +1931,7 @@
                             </td>
                         </tr>
                     </table><br>
-                    <p><input type="submit" class="btn btn-large btn-primary" value="Next &raquo;"></p>                
+                    <p><input type="submit" class="btn btn-large btn-primary" value="Next &raquo;"><br><br>Page<font color="#0088CC"> 5 </font> of <font color="#0088CC"> 10</font></p>                
                 </div>               
             </form>
         </div>
diff --git a/Survey/web/task.jsp b/Survey/web/task.jsp
index 163153ec843a54c646e85cf65d022e75590e395c..e7f15563bbbdebc72121b66a065f6f7f1701d835 100644
--- a/Survey/web/task.jsp
+++ b/Survey/web/task.jsp
@@ -169,7 +169,7 @@
                 $(self).next().find("input[name='diagnose_popularity']").val(diagnose_popularity);
                 diagnose_recommend = $("input[name='diagnose_recommend']:checked").val();
                 $(self).next().find("input[name='diagnose_recommend']").val(diagnose_recommend);
-                
+
                 $(self).next().submit();
                 return false;
             }
@@ -223,7 +223,7 @@
                                     + "<input name='query' value='" + query + "'/>"
                                     + "<input name='term' value='treatment'/>"
                                     + "<input id='1ex4' name='experiential' value=''/>"
-                                    + "<input id='1info14' name='infoLinks' value=''/>");
+                                    + "<input id='1info4' name='infoLinks' value=''/>");
 
 
                             var url5 = data.url5;
@@ -980,802 +980,6 @@
 
             });
 
-//            function cleanML2() {
-//                cleanML2_1();
-//                cleanML2_2();
-//                cleanML2_3();
-//                cleanML2_4();
-//                cleanML2_5();
-//                cleanML2_6();
-//                cleanML2_7();
-//                cleanML2_8();
-//                cleanML2_9();
-//                cleanML2_10();
-//
-//            }
-//
-//            function cleanML2_1() {
-//                $('#2post1').html("");
-//                $('#2experiential1').html("");
-//                $('#2infoLinks1').html("");
-//            }
-//
-//            function cleanML2_2() {
-//                $('#2post2').html("");
-//                $('#2experiential2').html("");
-//                $('#2infoLinks2').html("");
-//            }
-//
-//            function cleanML2_3() {
-//                $('#2post3').html("");
-//                $('#2experiential3').html("");
-//                $('#2infoLinks3').html("");
-//            }
-//
-//            function cleanML2_4() {
-//                $('#2post4').html("");
-//                $('#2experiential4').html("");
-//                $('#2infoLinks4').html("");
-//            }
-//
-//            function cleanML2_5() {
-//                $('#2post5').html("");
-//                $('#2experiential5').html("");
-//                $('#2infoLinks5').html("");
-//            }
-//
-//            function cleanML2_6() {
-//                $('#2post6').html("");
-//                $('#2experiential6').html("");
-//                $('#2infoLinks6').html("");
-//            }
-//
-//            function cleanML2_7() {
-//                $('#2post7').html("");
-//                $('#2experiential7').html("");
-//                $('#2infoLinks7').html("");
-//            }
-//
-//            function cleanML2_8() {
-//                $('#2post8').html("");
-//                $('#2experiential8').html("");
-//                $('#2infoLinks8').html("");
-//            }
-//
-//            function cleanML2_9() {
-//                $('#2post9').html("");
-//                $('#2experiential9').html("");
-//                $('#2infoLinks9').html("");
-//            }
-//
-//            function cleanML2_10() {
-//                $('#2post10').html("");
-//                $('#2experiential10').html("");
-//                $('#2infoLinks10').html("");
-//            }
-//
-//            function getResults2() {
-//                query = $('#query2').val();
-//                page = $('#query2').attr("class");
-//                try {
-//                    $.ajax({
-//                        type: "POST",
-//                        url: "Search2",
-//                        data: {"query": query, "page": page},
-//                        dataType: "json",
-//                        success: function(data) {
-//                            var url1 = data.url1;
-//                            var title1 = data.title1;
-//                            $('#2title1').html("<a href='NewServlet' target='_blank' onclick='return Go(this);'>"
-//                                    + title1 + "</a><form action= 'search-results' method='post' hidden='' target='_blank'>"
-//                                    + "<input name='url' value='" + url1 + "'/>"
-//                                    + "<input name='query' value='" + query + "'/>"
-//                                    + "<input name='treatment' value='hyperbaric'/>"
-//                                    + "<input id='1ex1' name='experiential' value=''/>"
-//                                    + "<input id='1info1' name='infoLinks' value=''/>");
-//
-//                            var url2 = data.url2;
-//                            var title2 = data.title2;
-//                            $('#2title2').html("<a href='NewServlet' target='_blank' onclick='return Go(this);'>"
-//                                    + title2 + "</a><form action= 'search-results' method='post' hidden='' target='_blank'>"
-//                                    + "<input name='url' value='" + url2 + "'/>"
-//                                    + "<input name='query' value='" + query + "'/>"
-//                                    + "<input name='treatment' value='hyperbaric'/>"
-//                                    + "<input id='1ex2' name='experiential' value=''/>"
-//                                    + "<input id='1info2' name='infoLinks' value=''/>");
-//
-//                            var url3 = data.url3;
-//                            var title3 = data.title3;
-//                            $('#2title3').html("<a href='NewServlet' target='_blank' onclick='return Go(this);'>"
-//                                    + title3 + "</a><form action= 'search-results' method='post' hidden='' target='_blank'>"
-//                                    + "<input name='url' value='" + url3 + "'/>"
-//                                    + "<input name='query' value='" + query + "'/>"
-//                                    + "<input name='treatment' value='hyperbaric'/>"
-//                                    + "<input id='1ex3' name='experiential' value=''/>"
-//                                    + "<input id='1info3' name='infoLinks' value=''/>");
-//
-//                            var url4 = data.url4;
-//                            var title4 = data.title4;
-//                            $('#2title4').html("<a href='NewServlet' target='_blank' onclick='return Go(this);'>"
-//                                    + title4 + "</a><form action= 'search-results' method='post' hidden='' target='_blank'>"
-//                                    + "<input name='url' value='" + url4 + "'/>"
-//                                    + "<input name='query' value='" + query + "'/>"
-//                                    + "<input name='treatment' value='hyperbaric'/>"
-//                                    + "<input id='1ex4' name='experiential' value=''/>"
-//                                    + "<input id='1info14' name='infoLinks' value=''/>");
-//
-//                            var url5 = data.url5;
-//                            var title5 = data.title5;
-//                            $('#2title5').html("<a href='NewServlet' target='_blank' onclick='return Go(this);'>"
-//                                    + title5 + "</a><form action= 'search-results' method='post' hidden='' target='_blank'>"
-//                                    + "<input name='url' value='" + url5 + "'/>"
-//                                    + "<input name='query' value='" + query + "'/>"
-//                                    + "<input name='treatment' value='hyperbaric'/>"
-//                                    + "<input id='1ex5' name='experiential' value=''/>"
-//                                    + "<input id='1info5' name='infoLinks' value=''/>");
-//
-//                            var url6 = data.url6;
-//                            var title6 = data.title6;
-//                            $('#2title6').html("<a href='NewServlet' target='_blank' onclick='return Go(this);'>"
-//                                    + title6 + "</a><form action= 'search-results' method='post' hidden='' target='_blank'>"
-//                                    + "<input name='url' value='" + url6 + "'/>"
-//                                    + "<input name='query' value='" + query + "'/>"
-//                                    + "<input name='treatment' value='hyperbaric'/>"
-//                                    + "<input id='1ex6' name='experiential' value=''/>"
-//                                    + "<input id='1info6' name='infoLinks' value=''/>");
-//
-//                            var url7 = data.url7;
-//                            var title7 = data.title7;
-//                            $('#2title7').html("<a href='NewServlet' target='_blank' onclick='return Go(this);'>"
-//                                    + title7 + "</a><form action= 'search-results' method='post' hidden='' target='_blank'>"
-//                                    + "<input name='url' value='" + url7 + "'/>"
-//                                    + "<input name='query' value='" + query + "'/>"
-//                                    + "<input name='treatment' value='hyperbaric'/>"
-//                                    + "<input id='1ex7' name='experiential' value=''/>"
-//                                    + "<input id='1info7' name='infoLinks' value=''/>");
-//
-//                            var url8 = data.url8;
-//                            var title8 = data.title8;
-//                            $('#2title8').html("<a href='NewServlet' target='_blank' onclick='return Go(this);'>"
-//                                    + title8 + "</a><form action= 'search-results' method='post' hidden='' target='_blank'>"
-//                                    + "<input name='url' value='" + url8 + "'/>"
-//                                    + "<input name='query' value='" + query + "'/>"
-//                                    + "<input name='treatment' value='hyperbaric'/>"
-//                                    + "<input id='1ex8' name='experiential' value=''/>"
-//                                    + "<input id='1info8' name='infoLinks' value=''/>");
-//
-//
-//                            var url9 = data.url9;
-//                            var title9 = data.title9;
-//                            $('#2title9').html("<a href='NewServlet' target='_blank' onclick='return Go(this);'>"
-//                                    + title9 + "</a><form action= 'search-results' method='post' hidden='' target='_blank'>"
-//                                    + "<input name='url' value='" + url9 + "'/>"
-//                                    + "<input name='query' value='" + query + "'/>"
-//                                    + "<input name='treatment' value='hyperbaric'/>"
-//                                    + "<input id='1ex9' name='experiential' value=''/>"
-//                                    + "<input id='1info9' name='infoLinks' value=''/>");
-//
-//                            var url10 = data.url10;
-//                            var title10 = data.title10;
-//                            $('#2title10').html("<a href='NewServlet' target='_blank' onclick='return Go(this);'>"
-//                                    + title10 + "</a><form action= 'search-results' method='post' hidden='' target='_blank'>"
-//                                    + "<input name='url' value='" + url10 + "'/>"
-//                                    + "<input name='query' value='" + query + "'/>"
-//                                    + "<input name='treatment' value='hyperbaric'/>"
-//                                    + "<input id='1ex10' name='experiential' value=''/>"
-//                                    + "<input id='1info10' name='infoLinks' value=''/>");
-//
-//
-//                            getML2_1();
-//                            getML2_2();
-//                            getML2_3();
-//                            getML2_4();
-//                            getML2_5();
-//                            getML2_6();
-//                            getML2_7();
-//                            getML2_8();
-//                            getML2_9();
-//                            getML2_10();
-//
-//
-//                        }
-//                    });
-//
-//                } catch (err) {
-//
-//                }
-//            }
-//            function getML2_1() {
-//                query = $('#query2').val();
-//                urlNum = "0";
-//                try {
-//                    $.ajax({
-//                        type: "POST",
-//                        url: "Ml2",
-//                        data: {"query": query, "urlNum": urlNum},
-//                        dataType: "json",
-//                        success: function(data) {
-//                            $('#2post1').html("<font color='#8A0808'>" + data.numPost + " posts<font>");
-//                            var experiential = data.experiential;
-//                            $('#2ex1').val(experiential);
-//                            if (experiential === "0.0") {
-//                                $('#2experiential1').html("<img src='img/experience_000.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential > 0.0 && experiential < 0.15) {
-//                                $('#2experiential1').html("<img src='img/experience_010.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.15 && experiential < 0.25) {
-//                                $('#2experiential1').html("<img src='img/experience_020.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.25 && experiential < 0.35) {
-//                                $('#2experiential1').html("<img src='img/experience_030.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.35 && experiential < 0.45) {
-//                                $('#2experiential1').html("<img src='img/experience_040.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.45 && experiential < 0.55) {
-//                                $('#2experiential1').html("<img src='img/experience_050.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.55 && experiential < 0.65) {
-//                                $('#2experiential1').html("<img src='img/experience_060.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.65 && experiential < 0.75) {
-//                                $('#2experiential1').html("<img src='img/experience_070.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.75 && experiential < 0.85) {
-//                                $('#2experiential1').html("<img src='img/experience_080.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.85 && experiential < 0.95) {
-//                                $('#2experiential1').html("<img src='img/experience_090.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.95 && experiential <= 1.00) {
-//                                $('#2experiential1').html("<img src='img/experience_100.gif' height='105' width='80'>");
-//                            }
-//                            var infoLinks = data.infoLinks;
-//                            $('#2info1').val(infoLinks);
-//                            if (infoLinks === "0.0") {
-//                                $('#2infoLinks1').html("<img src='img/info_no.gif' height='20' width='20'>");
-//                            }
-//                            else {
-//                                $('#2infoLinks1').html("<img src='img/info_yes.gif' height='20' width='20'>");
-//                            }
-//                        }
-//                    });
-//                } catch (err) {
-//                }
-//            }
-//
-//            function getML2_2() {
-//                query = $('#query2').val();
-//                urlNum = "1";
-//                try {
-//                    $.ajax({
-//                        type: "POST", url: "Ml2",
-//                        data: {"urlNum": urlNum, "query": query},
-//                        dataType: "json",
-//                        success: function(data) {
-//                            $('#2post2').html("<font color='#8A0808'>" + data.numPost + " posts<font>");
-//                            var experiential = data.experiential;
-//                            $('#2ex2').val(experiential);
-//                            if (experiential === "0.0") {
-//                                $('#2experiential2').html("<img src='img/experience_000.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential > 0.0 && experiential < 0.15) {
-//                                $('#2experiential2').html("<img src='img/experience_010.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.15 && experiential < 0.25) {
-//                                $('#2experiential2').html("<img src='img/experience_020.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.25 && experiential < 0.35) {
-//                                $('#2experiential2').html("<img src='img/experience_030.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.35 && experiential < 0.45) {
-//                                $('#2experiential2').html("<img src='img/experience_040.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.45 && experiential < 0.55) {
-//                                $('#2experiential2').html("<img src='img/experience_050.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.55 && experiential < 0.65) {
-//                                $('#2experiential2').html("<img src='img/experience_060.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.65 && experiential < 0.75) {
-//                                $('#2experiential2').html("<img src='img/experience_070.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.75 && experiential < 0.85) {
-//                                $('#2experiential2').html("<img src='img/experience_080.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.85 && experiential < 0.95) {
-//                                $('#2experiential2').html("<img src='img/experience_090.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.95 && experiential <= 1.00) {
-//                                $('#2experiential2').html("<img src='img/experience_100.gif' height='105' width='80'>");
-//                            }
-//                            var infoLinks = data.infoLinks;
-//                            $('#2info2').val(infoLinks);
-//                            if (infoLinks === "0.0") {
-//                                $('#2infoLinks2').html("<img src='img/info_no.gif' height='20' width='20'>");
-//                            }
-//                            else {
-//                                $('#2infoLinks2').html("<img src='img/info_yes.gif' height='20' width='20'>");
-//                            }
-//                        }
-//                    });
-//                } catch (err) {
-//                }
-//            }
-//
-//            function getML2_3() {
-//                query = $('#query2').val();
-//                urlNum = "2";
-//                try {
-//                    $.ajax({
-//                        type: "POST", url: "Ml2",
-//                        data: {"urlNum": urlNum, "query": query},
-//                        dataType: "json",
-//                        success: function(data) {
-//                            $('#2post3').html("<font color='#8A0808'>" + data.numPost + " posts<font>");
-//                            var experiential = data.experiential;
-//                            $('#2ex3').val(experiential);
-//                            if (experiential === "0.0") {
-//                                $('#2experiential3').html("<img src='img/experience_000.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential > 0.0 && experiential < 0.15) {
-//                                $('#2experiential3').html("<img src='img/experience_010.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.15 && experiential < 0.25) {
-//                                $('#2experiential3').html("<img src='img/experience_020.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.25 && experiential < 0.35) {
-//                                $('#2experiential3').html("<img src='img/experience_030.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.35 && experiential < 0.45) {
-//                                $('#2experiential3').html("<img src='img/experience_040.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.45 && experiential < 0.55) {
-//                                $('#2experiential3').html("<img src='img/experience_050.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.55 && experiential < 0.65) {
-//                                $('#2experiential3').html("<img src='img/experience_060.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.65 && experiential < 0.75) {
-//                                $('#2experiential3').html("<img src='img/experience_070.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.75 && experiential < 0.85) {
-//                                $('#2experiential3').html("<img src='img/experience_080.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.85 && experiential < 0.95) {
-//                                $('#2experiential3').html("<img src='img/experience_090.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.95 && experiential <= 1.00) {
-//                                $('#2experiential3').html("<img src='img/experience_100.gif' height='105' width='80'>");
-//                            }
-//                            var infoLinks = data.infoLinks;
-//                            $('#2info3').val(infoLinks);
-//                            if (infoLinks === "0.0") {
-//                                $('#2infoLinks3').html("<img src='img/info_no.gif' height='20' width='20'>");
-//                            }
-//                            else {
-//                                $('#2infoLinks3').html("<img src='img/info_yes.gif' height='20' width='20'>");
-//                            }
-//                        }
-//                    });
-//                } catch (err) {
-//                }
-//            }
-//
-//            function getML2_4() {
-//                query = $('#query2').val();
-//                urlNum = "3";
-//                try {
-//                    $.ajax({
-//                        type: "POST", url: "Ml2",
-//                        data: {"urlNum": urlNum, "query": query},
-//                        dataType: "json",
-//                        success: function(data) {
-//                            $('#2post4').html("<font color='#8A0808'>" + data.numPost + " posts<font>");
-//                            var experiential = data.experiential;
-//                            $('#2ex4').val(experiential);
-//                            if (experiential === "0.0") {
-//                                $('#2experiential4').html("<img src='img/experience_000.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential > 0.0 && experiential < 0.15) {
-//                                $('#2experiential4').html("<img src='img/experience_010.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.15 && experiential < 0.25) {
-//                                $('#2experiential4').html("<img src='img/experience_020.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.25 && experiential < 0.35) {
-//                                $('#2experiential4').html("<img src='img/experience_030.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.35 && experiential < 0.45) {
-//                                $('#2experiential4').html("<img src='img/experience_040.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.45 && experiential < 0.55) {
-//                                $('#2experiential4').html("<img src='img/experience_050.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.55 && experiential < 0.65) {
-//                                $('#2experiential4').html("<img src='img/experience_060.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.65 && experiential < 0.75) {
-//                                $('#2experiential4').html("<img src='img/experience_070.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.75 && experiential < 0.85) {
-//                                $('#2experiential4').html("<img src='img/experience_080.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.85 && experiential < 0.95) {
-//                                $('#2experiential4').html("<img src='img/experience_090.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.95 && experiential <= 1.00) {
-//                                $('#2experiential4').html("<img src='img/experience_100.gif' height='105' width='80'>");
-//                            }
-//                            var infoLinks = data.infoLinks;
-//                            $('#2info4').val(infoLinks);
-//                            if (infoLinks === "0.0") {
-//                                $('#2infoLinks4').html("<img src='img/info_no.gif' height='20' width='20'>");
-//                            }
-//                            else {
-//                                $('#2infoLinks4').html("<img src='img/info_yes.gif' height='20' width='20'>");
-//                            }
-//                        }
-//                    });
-//                } catch (err) {
-//                }
-//            }
-//
-//            function getML2_5() {
-//                query = $('#query2').val();
-//                urlNum = "4";
-//                try {
-//                    $.ajax({
-//                        type: "POST", url: "Ml2",
-//                        data: {"urlNum": urlNum, "query": query},
-//                        dataType: "json",
-//                        success: function(data) {
-//                            $('#2post5').html("<font color='#8A0808'>" + data.numPost + " posts<font>");
-//                            var experiential = data.experiential;
-//                            $('#2ex5').val(experiential);
-//                            if (experiential === "0.0") {
-//                                $('#2experiential5').html("<img src='img/experience_000.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential > 0.0 && experiential < 0.15) {
-//                                $('#2experiential5').html("<img src='img/experience_010.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.15 && experiential < 0.25) {
-//                                $('#2experiential5').html("<img src='img/experience_020.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.25 && experiential < 0.35) {
-//                                $('#2experiential5').html("<img src='img/experience_030.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.35 && experiential < 0.45) {
-//                                $('#2experiential5').html("<img src='img/experience_040.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.45 && experiential < 0.55) {
-//                                $('#2experiential5').html("<img src='img/experience_050.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.55 && experiential < 0.65) {
-//                                $('#2experiential5').html("<img src='img/experience_060.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.65 && experiential < 0.75) {
-//                                $('#2experiential5').html("<img src='img/experience_070.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.75 && experiential < 0.85) {
-//                                $('#2experiential5').html("<img src='img/experience_080.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.85 && experiential < 0.95) {
-//                                $('#2experiential5').html("<img src='img/experience_090.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.95 && experiential <= 1.00) {
-//                                $('#2experiential5').html("<img src='img/experience_100.gif' height='105' width='80'>");
-//                            }
-//                            var infoLinks = data.infoLinks;
-//                            $('#2info5').val(infoLinks);
-//                            if (infoLinks === "0.0") {
-//                                $('#2infoLinks5').html("<img src='img/info_no.gif' height='20' width='20'>");
-//                            }
-//                            else {
-//                                $('#2infoLinks5').html("<img src='img/info_yes.gif' height='20' width='20'>");
-//                            }
-//                        }
-//                    });
-//                } catch (err) {
-//                }
-//            }
-//
-//            function getML2_6() {
-//                query = $('#query2').val();
-//                urlNum = "5";
-//                try {
-//                    $.ajax({
-//                        type: "POST", url: "Ml2",
-//                        data: {"urlNum": urlNum, "query": query},
-//                        dataType: "json",
-//                        success: function(data) {
-//                            $('#2post6').html("<font color='#8A0808'>" + data.numPost + " posts<font>");
-//                            var experiential = data.experiential;
-//                            $('#2ex6').val(experiential);
-//                            if (experiential === "0.0") {
-//                                $('#2experiential6').html("<img src='img/experience_000.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential > 0.0 && experiential < 0.15) {
-//                                $('#2experiential6').html("<img src='img/experience_010.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.15 && experiential < 0.25) {
-//                                $('#2experiential6').html("<img src='img/experience_020.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.25 && experiential < 0.35) {
-//                                $('#2experiential6').html("<img src='img/experience_030.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.35 && experiential < 0.45) {
-//                                $('#2experiential6').html("<img src='img/experience_040.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.45 && experiential < 0.55) {
-//                                $('#2experiential6').html("<img src='img/experience_050.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.55 && experiential < 0.65) {
-//                                $('#2experiential6').html("<img src='img/experience_060.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.65 && experiential < 0.75) {
-//                                $('#2experiential6').html("<img src='img/experience_070.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.75 && experiential < 0.85) {
-//                                $('#2experiential6').html("<img src='img/experience_080.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.85 && experiential < 0.95) {
-//                                $('#2experiential6').html("<img src='img/experience_090.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.95 && experiential <= 1.00) {
-//                                $('#2experiential6').html("<img src='img/experience_100.gif' height='105' width='80'>");
-//                            }
-//                            var infoLinks = data.infoLinks;
-//                            $('#2info6').val(infoLinks);
-//                            if (infoLinks === "0.0") {
-//                                $('#2infoLinks6').html("<img src='img/info_no.gif' height='20' width='20'>");
-//                            }
-//                            else {
-//                                $('#2infoLinks6').html("<img src='img/info_yes.gif' height='20' width='20'>");
-//                            }
-//                        }
-//                    });
-//                } catch (err) {
-//                }
-//            }
-//
-//            function getML2_7() {
-//                query = $('#query2').val();
-//                urlNum = "6";
-//                try {
-//                    $.ajax({
-//                        type: "POST", url: "Ml2",
-//                        data: {"urlNum": urlNum, "query": query},
-//                        dataType: "json",
-//                        success: function(data) {
-//                            $('#2post7').html("<font color='#8A0808'>" + data.numPost + " posts<font>");
-//                            var experiential = data.experiential;
-//                            $('#2ex7').val(experiential);
-//                            if (experiential === "0.0") {
-//                                $('#2experiential7').html("<img src='img/experience_000.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential > 0.0 && experiential < 0.15) {
-//                                $('#2experiential7').html("<img src='img/experience_010.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.15 && experiential < 0.25) {
-//                                $('#2experiential7').html("<img src='img/experience_020.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.25 && experiential < 0.35) {
-//                                $('#2experiential7').html("<img src='img/experience_030.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.35 && experiential < 0.45) {
-//                                $('#2experiential7').html("<img src='img/experience_040.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.45 && experiential < 0.55) {
-//                                $('#2experiential7').html("<img src='img/experience_050.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.55 && experiential < 0.65) {
-//                                $('#2experiential7').html("<img src='img/experience_060.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.65 && experiential < 0.75) {
-//                                $('#2experiential7').html("<img src='img/experience_070.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.75 && experiential < 0.85) {
-//                                $('#2experiential7').html("<img src='img/experience_080.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.85 && experiential < 0.95) {
-//                                $('#2experiential7').html("<img src='img/experience_090.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.95 && experiential <= 1.00) {
-//                                $('#2experiential7').html("<img src='img/experience_100.gif' height='105' width='80'>");
-//                            }
-//                            var infoLinks = data.infoLinks;
-//                            $('#2info7').val(infoLinks);
-//                            if (infoLinks === "0.0") {
-//                                $('#2infoLinks7').html("<img src='img/info_no.gif' height='20' width='20'>");
-//                            }
-//                            else {
-//                                $('#2infoLinks7').html("<img src='img/info_yes.gif' height='20' width='20'>");
-//                            }
-//                        }
-//                    });
-//                } catch (err) {
-//                }
-//            }
-//
-//            function getML2_8() {
-//                query = $('#query2').val();
-//                urlNum = "7";
-//                try {
-//                    $.ajax({
-//                        type: "POST", url: "Ml2",
-//                        data: {"urlNum": urlNum, "query": query},
-//                        dataType: "json",
-//                        success: function(data) {
-//                            $('#2post8').html("<font color='#8A0808'>" + data.numPost + " posts<font>");
-//                            var experiential = data.experiential;
-//                            $('#2ex8').val(experiential);
-//                            if (experiential === "0.0") {
-//                                $('#2experiential8').html("<img src='img/experience_000.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential > 0.0 && experiential < 0.15) {
-//                                $('#2experiential8').html("<img src='img/experience_010.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.15 && experiential < 0.25) {
-//                                $('#2experiential8').html("<img src='img/experience_020.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.25 && experiential < 0.35) {
-//                                $('#2experiential8').html("<img src='img/experience_030.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.35 && experiential < 0.45) {
-//                                $('#2experiential8').html("<img src='img/experience_040.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.45 && experiential < 0.55) {
-//                                $('#2experiential8').html("<img src='img/experience_050.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.55 && experiential < 0.65) {
-//                                $('#2experiential8').html("<img src='img/experience_060.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.65 && experiential < 0.75) {
-//                                $('#2experiential8').html("<img src='img/experience_070.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.75 && experiential < 0.85) {
-//                                $('#2experiential8').html("<img src='img/experience_080.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.85 && experiential < 0.95) {
-//                                $('#2experiential8').html("<img src='img/experience_090.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.95 && experiential <= 1.00) {
-//                                $('#2experiential8').html("<img src='img/experience_100.gif' height='105' width='80'>");
-//                            }
-//                            var infoLinks = data.infoLinks;
-//                            $('#2info8').val(infoLinks);
-//                            if (infoLinks === "0.0") {
-//                                $('#2infoLinks8').html("<img src='img/info_no.gif' height='20' width='20'>");
-//                            }
-//                            else {
-//                                $('#2infoLinks8').html("<img src='img/info_yes.gif' height='20' width='20'>");
-//                            }
-//                        }
-//                    });
-//                } catch (err) {
-//                }
-//            }
-//
-//            function getML2_9() {
-//                query = $('#query2').val();
-//                urlNum = "8";
-//                try {
-//                    $.ajax({
-//                        type: "POST", url: "Ml2",
-//                        data: {"urlNum": urlNum, "query": query},
-//                        dataType: "json",
-//                        success: function(data) {
-//                            $('#2post9').html("<font color='#8A0808'>" + data.numPost + " posts<font>");
-//                            var experiential = data.experiential;
-//                            $('#2ex9').val(experiential);
-//                            if (experiential === "0.0") {
-//                                $('#2experiential9').html("<img src='img/experience_000.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential > 0.0 && experiential < 0.15) {
-//                                $('#2experiential9').html("<img src='img/experience_010.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.15 && experiential < 0.25) {
-//                                $('#2experiential9').html("<img src='img/experience_020.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.25 && experiential < 0.35) {
-//                                $('#2experiential9').html("<img src='img/experience_030.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.35 && experiential < 0.45) {
-//                                $('#2experiential9').html("<img src='img/experience_040.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.45 && experiential < 0.55) {
-//                                $('#2experiential9').html("<img src='img/experience_050.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.55 && experiential < 0.65) {
-//                                $('#2experiential9').html("<img src='img/experience_060.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.65 && experiential < 0.75) {
-//                                $('#2experiential9').html("<img src='img/experience_070.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.75 && experiential < 0.85) {
-//                                $('#2experiential9').html("<img src='img/experience_080.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.85 && experiential < 0.95) {
-//                                $('#2experiential9').html("<img src='img/experience_090.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.95 && experiential <= 1.00) {
-//                                $('#2experiential9').html("<img src='img/experience_100.gif' height='105' width='80'>");
-//                            }
-//                            var infoLinks = data.infoLinks;
-//                            $('#2info9').val(infoLinks);
-//                            if (infoLinks === "0.0") {
-//                                $('#2infoLinks9').html("<img src='img/info_no.gif' height='20' width='20'>");
-//                            }
-//                            else {
-//                                $('#2infoLinks9').html("<img src='img/info_yes.gif' height='20' width='20'>");
-//                            }
-//                        }
-//                    });
-//                } catch (err) {
-//                }
-//            }
-//
-//            function getML2_10() {
-//                query = $('#query2').val();
-//                urlNum = "9";
-//                try {
-//                    $.ajax({
-//                        type: "POST",
-//                        url: "Ml2",
-//                        data: {"urlNum": urlNum, "query": query},
-//                        dataType: "json",
-//                        success: function(data) {
-//                            $('#2post10').html("<font color='#8A0808'>" + data.numPost + " posts<font>");
-//                            var experiential = data.experiential;
-//                            $('#2ex10').val(experiential);
-//                            if (experiential === "0.0") {
-//                                $('#2experiential10').html("<img src='img/experience_000.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential > 0.0 && experiential < 0.15) {
-//                                $('#2experiential10').html("<img src='img/experience_010.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.15 && experiential < 0.25) {
-//                                $('#2experiential10').html("<img src='img/experience_020.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.25 && experiential < 0.35) {
-//                                $('#2experiential10').html("<img src='img/experience_030.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.35 && experiential < 0.45) {
-//                                $('#2experiential10').html("<img src='img/experience_040.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.45 && experiential < 0.55) {
-//                                $('#2experiential10').html("<img src='img/experience_050.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.55 && experiential < 0.65) {
-//                                $('#2experiential10').html("<img src='img/experience_060.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.65 && experiential < 0.75) {
-//                                $('#2experiential10').html("<img src='img/experience_070.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.75 && experiential < 0.85) {
-//                                $('#2experiential10').html("<img src='img/experience_080.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.85 && experiential < 0.95) {
-//                                $('#2experiential10').html("<img src='img/experience_090.gif' height='105' width='80'>");
-//                            }
-//                            else if (experiential >= 0.95 && experiential <= 1.00) {
-//                                $('#2experiential10').html("<img src='img/experience_100.gif' height='105' width='80'>");
-//                            }
-//                            var infoLinks = data.infoLinks;
-//                            $('#2info10').val(infoLinks);
-//                            if (infoLinks === "0.0") {
-//                                $('#2infoLinks10').html("<img src='img/info_no.gif' height='20' width='20'>");
-//                            } else {
-//                                $('#2infoLinks10').html("<img src='img/info_yes.gif' height='20' width='20'>");
-//                            }
-//                        }
-//                    });
-//                } catch (err) {
-//                }
-//            }
-
             function cleanML3() {
                 cleanML3_1();
                 cleanML3_2();
@@ -1867,8 +1071,8 @@
                                     + "<input name='url' value='" + url1 + "'/>"
                                     + "<input name='query' value='" + query + "'/>"
                                     + "<input name='term' value='diagnosis'/>"
-                                    + "<input id='1ex1' name='experiential' value=''/>"
-                                    + "<input id='1info1' name='infoLinks' value=''/>");
+                                    + "<input id='3ex1' name='experiential' value=''/>"
+                                    + "<input id='3info1' name='infoLinks' value=''/>");
 
                             var url2 = data.url2;
                             var title2 = data.title2;
@@ -1877,8 +1081,8 @@
                                     + "<input name='url' value='" + url2 + "'/>"
                                     + "<input name='query' value='" + query + "'/>"
                                     + "<input name='term' value='diagnosis'/>"
-                                    + "<input id='1ex2' name='experiential' value=''/>"
-                                    + "<input id='1info2' name='infoLinks' value=''/>");
+                                    + "<input id='3ex2' name='experiential' value=''/>"
+                                    + "<input id='3info2' name='infoLinks' value=''/>");
 
                             var url3 = data.url3;
                             var title3 = data.title3;
@@ -1887,8 +1091,8 @@
                                     + "<input name='url' value='" + url3 + "'/>"
                                     + "<input name='query' value='" + query + "'/>"
                                     + "<input name='term' value='diagnosis'/>"
-                                    + "<input id='1ex3' name='experiential' value=''/>"
-                                    + "<input id='1info3' name='infoLinks' value=''/>");
+                                    + "<input id='3ex3' name='experiential' value=''/>"
+                                    + "<input id='3info3' name='infoLinks' value=''/>");
 
 
                             var url4 = data.url4;
@@ -1898,8 +1102,8 @@
                                     + "<input name='url' value='" + url4 + "'/>"
                                     + "<input name='query' value='" + query + "'/>"
                                     + "<input name='term' value='diagnosis'/>"
-                                    + "<input id='1ex4' name='experiential' value=''/>"
-                                    + "<input id='1info14' name='infoLinks' value=''/>");
+                                    + "<input id='3ex4' name='experiential' value=''/>"
+                                    + "<input id='3info4' name='infoLinks' value=''/>");
 
                             var url5 = data.url5;
                             var title5 = data.title5;
@@ -1908,8 +1112,8 @@
                                     + "<input name='url' value='" + url5 + "'/>"
                                     + "<input name='query' value='" + query + "'/>"
                                     + "<input name='term' value='diagnosis'/>"
-                                    + "<input id='1ex5' name='experiential' value=''/>"
-                                    + "<input id='1info5' name='infoLinks' value=''/>");
+                                    + "<input id='3ex5' name='experiential' value=''/>"
+                                    + "<input id='3info5' name='infoLinks' value=''/>");
 
                             var url6 = data.url6;
                             var title6 = data.title6;
@@ -1918,8 +1122,8 @@
                                     + "<input name='url' value='" + url6 + "'/>"
                                     + "<input name='query' value='" + query + "'/>"
                                     + "<input name='term' value='diagnosis'/>"
-                                    + "<input id='1ex6' name='experiential' value=''/>"
-                                    + "<input id='1info6' name='infoLinks' value=''/>");
+                                    + "<input id='3ex6' name='experiential' value=''/>"
+                                    + "<input id='3info6' name='infoLinks' value=''/>");
 
                             var url7 = data.url7;
                             var title7 = data.title7;
@@ -1928,8 +1132,8 @@
                                     + "<input name='url' value='" + url7 + "'/>"
                                     + "<input name='query' value='" + query + "'/>"
                                     + "<input name='term' value='diagnosis'/>"
-                                    + "<input id='1ex7' name='experiential' value=''/>"
-                                    + "<input id='1info7' name='infoLinks' value=''/>");
+                                    + "<input id='3ex7' name='experiential' value=''/>"
+                                    + "<input id='3info7' name='infoLinks' value=''/>");
 
                             var url8 = data.url8;
                             var title8 = data.title8;
@@ -1938,8 +1142,8 @@
                                     + "<input name='url' value='" + url8 + "'/>"
                                     + "<input name='query' value='" + query + "'/>"
                                     + "<input name='term' value='diagnosis'/>"
-                                    + "<input id='1ex8' name='experiential' value=''/>"
-                                    + "<input id='1info8' name='infoLinks' value=''/>");
+                                    + "<input id='3ex8' name='experiential' value=''/>"
+                                    + "<input id='3info8' name='infoLinks' value=''/>");
 
                             var url9 = data.url9;
                             var title9 = data.title9;
@@ -1948,8 +1152,8 @@
                                     + "<input name='url' value='" + url9 + "'/>"
                                     + "<input name='query' value='" + query + "'/>"
                                     + "<input name='term' value='diagnosis'/>"
-                                    + "<input id='1ex9' name='experiential' value=''/>"
-                                    + "<input id='1info9' name='infoLinks' value=''/>");
+                                    + "<input id='3ex9' name='experiential' value=''/>"
+                                    + "<input id='3info9' name='infoLinks' value=''/>");
 
                             var url10 = data.url10;
                             var title10 = data.title10;
@@ -1958,8 +1162,8 @@
                                     + "<input name='url' value='" + url10 + "'/>"
                                     + "<input name='query' value='" + query + "'/>"
                                     + "<input name='term' value='diagnosis'/>"
-                                    + "<input id='1ex10' name='experiential' value=''/>"
-                                    + "<input id='1info10' name='infoLinks' value=''/>");
+                                    + "<input id='3ex10' name='experiential' value=''/>"
+                                    + "<input id='3info10' name='infoLinks' value=''/>");
 
 
                             getML3_1();
@@ -2588,8 +1792,8 @@
                     <h2>Your Friend</h2>
                 </div>
                 <h4>
-<!--                    Imagine you have a friend who has been complaining of a rash, headaches, and extreme fatigue.-->
-                        Imagine you have a friend who has been told he may have lyme disease.
+                    <!--                    Imagine you have a friend who has been complaining of a rash, headaches, and extreme fatigue.-->
+                    Imagine you have a friend who has been told he may have lyme disease.
                 </h4><br>
                 <h4>
                     You have noticed your friend seems out of breath after short walks (for example, when walking to the car after dinner).
@@ -2603,9 +1807,9 @@
                                 </h4><br>-->
                 <div id="00">
                     <input type="button" class="btn btn-large btn-primary" name="next1" value="Next &raquo;" onclick="
-                hideContent('0');
-                showContent(1);
-                getResults3();
+                            hideContent('0');
+                            showContent(1);
+                            getResults3();
                            ">
                 </div>
             </div>
@@ -2621,7 +1825,7 @@
                     <table> 
                         <tr>
                             <td>
-                                <img src='img/lyme_no.gif' height='20' width='21'> Poster links to supporting information&nbsp;&nbsp;&nbsp;&nbsp;
+                                <img src='img/lyme_yes.gif' height='20' width='21'> Poster links to supporting information&nbsp;&nbsp;&nbsp;&nbsp;
                             </td>
                             <td>
                                 <img src='img/experience_050.gif' height='105' width='80'> Percent posts about personal experiences&nbsp;&nbsp;&nbsp;&nbsp;
@@ -2647,10 +1851,10 @@
                                     <tr>
                                         <td style="white-space:nowrap;">
                                             <input id="query1" class="0" type="text" value="do I have lyme test" onkeydown="keyPress1();" style="width:70%;vertical-align:top">&nbsp;&nbsp;
-<!--                                            <img src="img/people_sphere.gif" height='40' width='40'>-->
+                                            <!--                                            <img src="img/people_sphere.gif" height='40' width='40'>-->
                                             <input type="button"  class="btn btn-medium btn-primary" title="search" value="search" style="vertical-align:top" onclick="cleanML1();
-                setPage1();
-                getResults1();
+                                                    setPage1();
+                                                    getResults1();
                                                    ">
 
 
@@ -2738,71 +1942,71 @@
                                     <tr>
                                         <td width="15">
                                             <a href="#" onclick="cleanML1();
-                setPage1();
-                getResults1();">
+                                                    setPage1();
+                                                    getResults1();">
                                                 1 
                                             </a>                                            
                                         </td>
                                         <td width="15">
                                             <a href="#" onclick="cleanML1();
-                $('#query1').attr('class', 1);
-                getResults1();">
+                                                    $('#query1').attr('class', 1);
+                                                    getResults1();">
                                                 2
                                             </a>
                                         </td>
                                         <td width="15">
                                             <a href="#" onclick="cleanML1();
-                $('#query1').attr('class', 2);
-                getResults1();">
+                                                    $('#query1').attr('class', 2);
+                                                    getResults1();">
                                                 3
                                             </a>
                                         </td>
                                         <td width="15">
                                             <a href="#" onclick="cleanML1();
-                $('#query1').attr('class', 3);
-                getResults1();">
+                                                    $('#query1').attr('class', 3);
+                                                    getResults1();">
                                                 4
                                             </a>
                                         </td>
                                         <td width="15">
                                             <a href="#" onclick="cleanML1();
-                $('#query1').attr('class', 4);
-                getResults1();">
+                                                    $('#query1').attr('class', 4);
+                                                    getResults1();">
                                                 5
                                             </a>
                                         </td>
                                         <td width="15">
                                             <a href="#" onclick="cleanML1();
-                $('#query1').attr('class', 5);
-                getResults1();">
+                                                    $('#query1').attr('class', 5);
+                                                    getResults1();">
                                                 6
                                             </a>
                                         </td>
                                         <td width="15">
                                             <a href="#" onclick="cleanML1();
-                $('#query1').attr('class', 6);
-                getResults1();">
+                                                    $('#query1').attr('class', 6);
+                                                    getResults1();">
                                                 7
                                             </a>
                                         </td>
                                         <td width="15">
                                             <a href="#" onclick="cleanML1();
-                $('#query1').attr('class', 7);
-                getResults1();">
+                                                    $('#query1').attr('class', 7);
+                                                    getResults1();">
                                                 8
                                             </a>
                                         </td>
                                         <td width="15">
                                             <a href="#" onclick="cleanML1();
-                $('#query1').attr('class', 8);
-                getResults1();">
+                                                    $('#query1').attr('class', 8);
+                                                    getResults1();">
                                                 9
                                             </a>
                                         </td>
                                         <td width="15">
                                             <a href="#" onclick="cleanML1();
-                $('#query1').attr('class', 9);
-                getResults1();">
+                                                    $('#query1').attr('class', 9);
+                                                    getResults1();">
                                                 10
                                             </a>
                                         </td>
@@ -3104,359 +2308,13 @@
                 </div><br><br>
                 <div id="1111" style="margin-left: 47.5%;">
                     <input type="button" class="btn btn-large btn-primary" name="next1" value="Next &raquo;" onclick="
-                hideContent('1');
-                hideContent('1111');
-                showContent(3);
-                           ">
+                            hideContent('1');
+                            hideContent('1111');
+                            showContent(3);
+                           "><br><br>Page<font color="#0088CC"> 6 </font> of <font color="#0088CC"> 10</font>
                 </div><br>
             </div> 
 
-
-            <!--            <div id ="2" class="option" style="display:none;">
-                            <div style="margin-left: 2.5%; max-width: 95%" class="page-header">
-                                <p class="taskHeader">
-                                    At left are search results about rife therapy (named after its inventor) during which low-voltage electricity is applied to the patient's body.
-                                    <br><br>
-                                    Please click on the results that look helpful and then answer the questions on the right.
-                                </p>
-                                <table> 
-                                    <tr>
-                                        <td>
-                                            <img src='img/info_no.gif' height='20' width='21' title='gray info icon'> Poster links to supporting information&nbsp;&nbsp;&nbsp;&nbsp;
-                                        </td>
-                                        <td>
-                                            <img src='img/experience_050.gif' height='105' width='80' title='five person icons, half black-half gray'> percent posts about personal experiences&nbsp;&nbsp;&nbsp;&nbsp;
-                                        </td>
-            
-                                    </tr>                          
-                                </table>
-                            </div>
-                            <div id="21" class="container" style="margin-bottom: 20px; margin-left: 1%;height:600px; width: 48.5%;display: block;overflow:scroll;border: 1px solid;border-color: #0088CC;float: left">
-                                <div id="cse2" style="width: 100%;">
-                                    <div style="margin-left:3%;margin-top: 3%;margin-right: 3%;">
-                                        <div>
-                                            <table>
-                                                <tr>
-                                                    <td style="white-space:nowrap;">
-                                                        <input id="query2" class="0" type="text" value="does rife work" onkeydown="keyPress2();" style="width:250%;vertical-align:top">&nbsp;&nbsp;
-                                                        <input type="button"  class="btn btn-medium btn-primary" title="search" value="search" style="vertical-align:top" onclick="cleanML2();
-                            setPage2();
-                            getResults2();">
-                                                    </td>                                                                                            
-                                                </tr>                                                       
-                                            </table>
-                                        </div>
-                                        <div>
-                                            <table>
-                                                <tbody
-                                                    <tr>
-                                                        <td>
-                                                            <p><b style="color:#0088CC;">Note</b>: Feel free to run additional searches. Note that results will take 10-20 seconds to load.</p>
-                                                        </td>
-                                                    </tr>
-                                            </table>
-                                        </div>
-                                        <div>
-                                            <table id="results2">
-                                                <tbody>
-                                                    <tr style="height:40px;">
-                                                        <td id="2post1" width='55'></td>
-                                                        <td id="2infoLinks1"></td>
-                                                        <td id="2experiential1"></td>
-                                                        <td id="2title1"></td>
-                                                    </tr>
-                                                    <tr style="height:40px;">
-                                                        <td id="2post2" width='55'></td>
-                                                        <td id="2infoLinks2"></td>
-                                                        <td id="2experiential2"></td>
-                                                        <td id="2title2"></td>
-                                                    </tr>
-                                                    <tr style="height:40px;">
-                                                        <td id="2post3" width='55'></td>
-                                                        <td id="2infoLinks3"></td>
-                                                        <td id="2experiential3"></td>
-                                                        <td id="2title3"></td>
-                                                    </tr>
-                                                    <tr style="height:40px;">
-                                                        <td id="2post4" width='55'></td>
-                                                        <td id="2infoLinks4"></td>
-                                                        <td id="2experiential4"></td>
-                                                        <td id="2title4"></td>
-                                                    </tr>
-                                                    <tr style="height:40px;">
-                                                        <td id="2post5" width='55'></td>
-                                                        <td id="2infoLinks5"></td>
-                                                        <td id="2experiential5"></td>
-                                                        <td id="2title5"></td>
-                                                    </tr>                                    
-                                                    <tr style="height:40px;">
-                                                        <td id="2post6" width='55'></td>
-                                                        <td id="2infoLinks6"></td>
-                                                        <td id="2experiential6"></td>
-                                                        <td id="2title6"></td>
-                                                    </tr>                                        
-                                                    <tr style="height:40px;">
-                                                        <td id="2post7" width='55'></td>
-                                                        <td id="2infoLinks7"></td>
-                                                        <td id="2experiential7"></td>
-                                                        <td id="2title7"></td>
-                                                    </tr>
-                                                    <tr style="height:40px;">
-                                                        <td id="2post8" width='55'></td>
-                                                        <td id="2infoLinks8"></td>
-                                                        <td id="2experiential8"></td>
-                                                        <td id="2title8"></td>
-                                                    </tr>
-                                                    <tr style="height:40px;">
-                                                        <td id="2post9" width='55'></td>
-                                                        <td id="2infoLinks9"></td>
-                                                        <td id="2experiential9"></td>
-                                                        <td id="2title9"></td>
-                                                    </tr>
-                                                    <tr style="height:40px;">
-                                                        <td id="2post10" width='55'></td>
-                                                        <td id="2infoLinks10"></td>
-                                                        <td id="2experiential10"></td>
-                                                        <td id="2title10"></td>
-                                                    </tr>
-                                                </tbody>
-                                            </table>
-                                                                            <table>
-                                                <tr>
-                                                    <td width="15">
-                                                        <a href="#" onclick="cleanML2();
-                            setPage2();
-                            getResults2();">
-                                                            1 
-                                                        </a>                                            
-                                                    </td>
-                                                    <td width="15">
-                                                        <a href="#" onclick="cleanML2();$('#query2').attr('class', 1);getResults2();">
-                                                           2
-                                                        </a>
-                                                    </td>
-                                                    <td width="15">
-                                                        <a href="#" onclick="cleanML2();$('#query2').attr('class', 2);getResults2();">
-                                                           3
-                                                        </a>
-                                                    </td>
-                                                    <td width="15">
-                                                        <a href="#" onclick="cleanML2();$('#query2').attr('class', 3);getResults2();">
-                                                           4
-                                                        </a>
-                                                    </td>
-                                                    <td width="15">
-                                                        <a href="#" onclick="cleanML2();$('#query2').attr('class', 4);getResults2();">
-                                                           5
-                                                        </a>
-                                                    </td>
-                                                    <td width="15">
-                                                        <a href="#" onclick="cleanML2();$('#query2').attr('class', 5);getResults2();">
-                                                           6
-                                                        </a>
-                                                    </td>
-                                                    <td width="15">
-                                                        <a href="#" onclick="cleanML2();$('#query2').attr('class', 6);getResults2();">
-                                                           7
-                                                        </a>
-                                                    </td>
-                                                    <td width="15">
-                                                        <a href="#" onclick="cleanML2();$('#query2').attr('class', 7);getResults2();">
-                                                           8
-                                                        </a>
-                                                    </td>
-                                                    <td width="15">
-                                                        <a href="#" onclick="cleanML2();$('#query2').attr('class', 8);getResults2();">
-                                                           9
-                                                        </a>
-                                                    </td>
-                                                    <td width="15">
-                                                        <a href="#" onclick="cleanML2();$('#query2').attr('class', 9);getResults2();">
-                                                           10
-                                                        </a>
-                                                    </td>
-                                                </tr>
-                                            </table>
-                                        </div>
-                                    </div>
-                                </div>
-                            </div>  
-            
-                            <div id="22" class="container" style="margin-bottom: 20px; margin-right: 1%;height:600px; width: 48.5%;display: block;overflow:scroll;border: 1px solid;border-color: #0088CC;float: right">
-                                <div style="margin-left:2.5%;">
-                                    <div id="221"  style="max-width:95%">
-                                        <h4>How effective would you tell your friend rife therapy is?</h4>
-                                        <table>
-                                            <tr>
-                                                <td>
-                                                    <input type="radio" name="rife_effective_O" value="0Very effective"/>
-                                                </td>
-                                                <td>
-                                                    &nbsp;Very effective
-                                                </td>
-                                            </tr>
-                                            <tr height="3px"></tr>
-                                            <tr>
-                                                <td>
-                                                    <input type="radio" name="rife_effective_O" value="1Somewhat effective"/>
-                                                </td>
-                                                <td>
-                                                    &nbsp;Somewhat effective
-                                                </td>
-                                            </tr>
-                                            <tr height="3px"></tr>
-                                            <tr>
-                                                <td>
-                                                    <input type="radio" name="rife_effective_O" value="2Not very effective"/>
-                                                </td>
-                                                <td>
-                                                    &nbsp;Not very effective
-                                                </td>
-                                            </tr>
-                                            <tr height="3px"></tr>
-                                            <tr>
-                                                <td>
-                                                    <input type="radio" name="rife_effective_O" value="3Cannot tell from results"/>
-                                                </td>
-                                                <td>
-                                                    &nbsp;Cannot tell from results
-                                                </td>
-                                            </tr>
-                                        </table>
-                                    </div><br><br>
-            
-                                    <div id="222"  style="max-width:95%">
-                                        <h4>How trustworthy would you tell your friend rife therapy is?</h4>
-                                        <table>
-                                            <tr>
-                                                <td>
-                                                    <input type="radio" name="rife_trustworthiness_O" value="0Very trustworthy"/>
-                                                </td>
-                                                <td>
-                                                    &nbsp;Very trustworthy
-                                                </td>
-                                            </tr>
-                                            <tr height="3px"></tr>
-                                            <tr>
-                                                <td>
-                                                    <input type="radio" name="rife_trustworthiness_O" value="1Somewhat trustworthy"/>
-                                                </td>
-                                                <td>
-                                                    &nbsp;Somewhat trustworthy
-                                                </td>
-                                            </tr>
-                                            <tr height="3px"></tr>
-                                            <tr>
-                                                <td>
-                                                    <input type="radio" name="rife_trustworthiness_O" value="2Not very trustworthy"/>
-                                                </td>
-                                                <td>
-                                                    &nbsp;Not very trustworthy
-                                                </td>
-                                            </tr>
-                                            <tr height="3px"></tr>
-                                            <tr>
-                                                <td>
-                                                    <input type="radio" name="rife_trustworthiness_O" value="3Cannot tell from results"/>
-                                                </td>
-                                                <td>
-                                                    &nbsp;Cannot tell from results
-                                                </td>
-                                            </tr>
-                                        </table>
-                                    </div><br><br>
-            
-                                    <div id="223"  style="max-width:95%">
-                                        <h4>How much factual support would you tell your friend there is for rife therapy?</h4>
-                                        <table>
-                                            <tr>
-                                                <td>
-                                                    <input type="radio" name="rife_factualSupport_O" value="0A lot of factual support"/>
-                                                </td>
-                                                <td>
-                                                    &nbsp;A lot of factual support
-                                                </td>
-                                            </tr>
-                                            <tr height="3px"></tr>
-                                            <tr>
-                                                <td>
-                                                    <input type="radio" name="rife_factualSupport_O" value="1Some factual support"/>
-                                                </td>
-                                                <td>
-                                                    &nbsp;Some factual support
-                                                </td>
-                                            </tr>
-                                            <tr height="3px"></tr>
-                                            <tr>
-                                                <td>
-                                                    <input type="radio" name="rife_factualSupport_O" value="2Not a lot of factual support"/>
-                                                </td>
-                                                <td>
-                                                    &nbsp;Not a lot of factual support
-                                                </td>
-                                            </tr>
-                                            <tr height="3px"></tr>
-                                            <tr>
-                                                <td>
-                                                    <input type="radio" name="rife_factualSupport_O" value="3Cannot tell from results"/>
-                                                </td>
-                                                <td>
-                                                    &nbsp;Cannot tell from results
-                                                </td>
-                                            </tr>
-                                        </table>
-                                    </div><br><br>
-            
-                                    <div id="224"  style="max-width:95%">
-                                        <h4>How popular would you tell your friend rife therapy is?</h4>
-                                        <table>
-                                            <tr>
-                                                <td>
-                                                    <input type="radio" name="rife_popularity_O" value="0Very popular"/>
-                                                </td>
-                                                <td>
-                                                    &nbsp;Very popular
-                                                </td>
-                                            </tr>
-                                            <tr height="3px"></tr>
-                                            <tr>
-                                                <td>
-                                                    <input type="radio" name="rife_popularity_O" value="1Somewhat popular"/>
-                                                </td>
-                                                <td>
-                                                    &nbsp;Somewhat popular
-                                                </td>
-                                            </tr>
-                                            <tr height="3px"></tr>
-                                            <tr>
-                                                <td>
-                                                    <input type="radio" name="rife_popularity_O" value="2Not very popular"/>
-                                                </td>
-                                                <td>
-                                                    &nbsp;Not very popular
-                                                </td>
-                                            </tr>
-                                            <tr height="3px"></tr>
-                                            <tr>
-                                                <td>
-                                                    <input type="radio" name="rife_popularity_O" value="3Cannot tell from results"/>
-                                                </td>
-                                                <td>
-                                                    &nbsp;Cannot tell from results
-                                                </td>
-                                            </tr>
-                                        </table>
-                                    </div>
-                                </div>
-                            </div>
-                            <div id="2222" style="margin-left: 47.5%;">
-                                <input type="button" class="btn btn-large btn-primary" name="next1" value="Next &raquo;" onclick="
-                            hideContent('2');
-                            hideContent('2222');
-                            showContent(3);">
-                            </div><br>
-                        </div>-->
-
             <div id ="3" class="option" style="display:none">
                 <div style="margin-left: 2.5%; max-width: 95%" class="page-header">
                     <p class="taskHeader">
@@ -3467,7 +2325,7 @@
                     <table> 
                         <tr>
                             <td>
-                                <img src='img/lyme_no.gif' height='20' width='21'> Poster links to supporting information&nbsp;&nbsp;&nbsp;&nbsp;
+                                <img src='img/lyme_yes.gif' height='20' width='21'> Poster links to supporting information&nbsp;&nbsp;&nbsp;&nbsp;
                             </td>
                             <td>
                                 <img src='img/experience_050.gif' height='105' width='80'> Percent posts about personal experiences&nbsp;&nbsp;&nbsp;&nbsp;
@@ -3493,10 +2351,10 @@
                                     <tr>
                                         <td style="white-space:nowrap;">
                                             <input id="query3" class="0" type="text" value="best antibiotic for treatment" onkeydown="keyPress3();" style="width:70%;vertical-align:top">
-<!--                                            <img src="img/people_sphere.gif" height='40' width='40'>-->
+                                            <!--                                            <img src="img/people_sphere.gif" height='40' width='40'>-->
                                             <input type="button"  class="btn btn-medium btn-primary" title="search" value="search" style="vertical-align:top" onclick="cleanML3();
-                setPage3();
-                getResults3();">
+                                                    setPage3();
+                                                    getResults3();">
                                         </td>                                                                                            
                                     </tr>                                                       
                                 </table>
@@ -3580,71 +2438,71 @@
                                     <tr>
                                         <td width="15">
                                             <a href="#" onclick="cleanML3();
-                setPage3();
-                getResults3();">
+                                                    setPage3();
+                                                    getResults3();">
                                                 1 
                                             </a>                                            
                                         </td>
                                         <td width="15">
                                             <a href="#" onclick="cleanML3();
-                $('#query3').attr('class', 1);
-                getResults3();">
+                                                    $('#query3').attr('class', 1);
+                                                    getResults3();">
                                                 2
                                             </a>
                                         </td>
                                         <td width="15">
                                             <a href="#" onclick="cleanML3();
-                $('#query3').attr('class', 2);
-                getResults3();">
+                                                    $('#query3').attr('class', 2);
+                                                    getResults3();">
                                                 3
                                             </a>
                                         </td>
                                         <td width="15">
                                             <a href="#" onclick="cleanML3();
-                $('#query3').attr('class', 3);
-                getResults3();">
+                                                    $('#query3').attr('class', 3);
+                                                    getResults3();">
                                                 4
                                             </a>
                                         </td>
                                         <td width="15">
                                             <a href="#" onclick="cleanML3();
-                $('#query3').attr('class', 4);
-                getResults3();">
+                                                    $('#query3').attr('class', 4);
+                                                    getResults3();">
                                                 5
                                             </a>
                                         </td>
                                         <td width="15">
                                             <a href="#" onclick="cleanML3();
-                $('#query3').attr('class', 5);
-                getResults3();">
+                                                    $('#query3').attr('class', 5);
+                                                    getResults3();">
                                                 6
                                             </a>
                                         </td>
                                         <td width="15">
                                             <a href="#" onclick="cleanML3();
-                $('#query3').attr('class', 6);
-                getResults3();">
+                                                    $('#query3').attr('class', 6);
+                                                    getResults3();">
                                                 7
                                             </a>
                                         </td>
                                         <td width="15">
                                             <a href="#" onclick="cleanML3();
-                $('#query3').attr('class', 7);
-                getResults3();">
+                                                    $('#query3').attr('class', 7);
+                                                    getResults3();">
                                                 8
                                             </a>
                                         </td>
                                         <td width="15">
                                             <a href="#" onclick="cleanML3();
-                $('#query3').attr('class', 8);
-                getResults3();">
+                                                    $('#query3').attr('class', 8);
+                                                    getResults3();">
                                                 9
                                             </a>
                                         </td>
                                         <td width="15">
                                             <a href="#" onclick="cleanML3();
-                $('#query3').attr('class', 9);
-                getResults3();">
+                                                    $('#query3').attr('class', 9);
+                                                    getResults3();">
                                                 10
                                             </a>
                                         </td>
@@ -3963,7 +2821,8 @@
                         <input name="diagnose_effective" value="">
                         <input name="diagnose_popularity" value="">
                         <input name="diagnose_recommend" value="">
-                    </form> 
+                    </form> <br><br>Page<font color="#0088CC"> 7 </font> of <font color="#0088CC"> 10</font>
+
                 </div><br>
             </div>   
         </div>