Index: trunk/webapps/EInotebook/notebook.js
===================================================================
--- trunk/webapps/EInotebook/notebook.js	(revision 359)
+++ trunk/webapps/EInotebook/notebook.js	(revision 363)
@@ -30,4 +30,5 @@
 function setupNotebook()
 {
+   console.log("setupNotebook() starting");
    changeTab('summaryTab');
    showContent('summaryPageContent')
@@ -138,25 +139,4 @@
     });
 }
-// Load the dynamic json file for highways, etc.
-function loadJSON(inFile, callback)
-{
-    var xobj = new XMLHttpRequest();
-    // Assume XML unless filename ends with .json
-    if (inFile.endsWith(".json"))
-    {
-        xobj.overrideMimeType("application/json");
-    }
-    xobj.open('GET', inFile, true);
-    xobj.onreadystatechange = function()
-    {
-        if (xobj.readyState == 4 && xobj.status == "200")
-        {
-            callback(xobj.responseText);
-        }
-    };
-    // We want ajax to ignore any cached responses
-    xobj.setRequestHeader('If-Modified-Since', 'Sat, 01 Jan 2000 01:01:01 GMT')
-    xobj.send(null);
-}
 /**
  * Selects a new tab to be viewed. 
