prep for phoenix (eventually)
diff --git a/downloadsites/webtools/handleSummaryResults.php b/downloadsites/webtools/handleSummaryResults.php
new file mode 100644
index 0000000..c6aa7e1
--- /dev/null
+++ b/downloadsites/webtools/handleSummaryResults.php
@@ -0,0 +1,18 @@
+<?php
+// if compilelogsSummary.xml exists, assume the "new way" (summary in xml file).
+// else, assume old way
+//echo "drops/$bValue/$innerValue/compilelogsSummary.xml";
+if (file_exists("drops/$bValue/$innerValue/compilelogsSummary.xml"))
+{
+    include 'compileLogSumaryXML.php';
+}
+// if compileResults.php exists, assume the "new way" (testResults and compileResult seperated).
+// else, assume old way
+else if (file_exists("drops/$bValue/$innerValue/compileResults.php"))
+{
+    include 'parse2Handling.php';
+}
+else {
+    include 'parseHandling.php';
+}
+?>
\ No newline at end of file