Index: trunk/webapps/cptms/js/cmsLayer.js
===================================================================
--- trunk/webapps/cptms/js/cmsLayer.js	(revision 372)
+++ trunk/webapps/cptms/js/cmsLayer.js	(revision 373)
@@ -160,6 +160,7 @@
         console.log("outString = " + outString);
         var xhttp = new XMLHttpRequest();
-        xhttp.open("GET", "cgi-bin/saveCMSmessage.py?msg=" + outString, true);
+        xhttp.open("GET", "../cgi-bin/saveCMSmessage.py?msg=" + outString, true);
         xhttp.send();
+        console.log("status code: " + xhttp.status);
         // Using POST might be a better idea ... haven't tried this yet
         //      var xhr = new XMLHttpRequest();
Index: trunk/webapps/cptms/js/harLayer.js
===================================================================
--- trunk/webapps/cptms/js/harLayer.js	(revision 372)
+++ trunk/webapps/cptms/js/harLayer.js	(revision 373)
@@ -117,5 +117,5 @@
 
         var xhttp = new XMLHttpRequest();
-        xhttp.open("GET", "cgi-bin/saveHARmessage.py?msg=" + outString, true);
+        xhttp.open("GET", "../cgi-bin/saveHARmessage.py?msg=" + outString, true);
         xhttp.send();
         // Using POST might be a better idea ... haven't tried this yet
Index: trunk/webapps/cptms/runTimer.py
===================================================================
--- trunk/webapps/cptms/runTimer.py	(revision 348)
+++ 	(revision )
@@ -1,21 +1,0 @@
-#!/usr/bin/python
-# Run a timer and save it to a file
-import time
-from datetime import timedelta
-count = 0
-while True:
-    # Code executed here
-    time.sleep(1)
-    count += 1
-    elapsedTime = timedelta(seconds=count)
-    # convert integer into hh:mm:ss format
-    lineout =  "{\"clock\":\"" + str(elapsedTime) + "\"}"
-    
-    # write message to file
-    text_file = open("sim_clock.json", "w")
-    text_file.write(lineout)
-    text_file.close()
-
-    print count
-
-
Index: trunk/webapps/cgi-bin/saveHARmessage.py
===================================================================
--- trunk/webapps/cgi-bin/saveHARmessage.py	(revision 327)
+++ trunk/webapps/cgi-bin/saveHARmessage.py	(revision 373)
@@ -11,5 +11,5 @@
    
 # write message to file
-text_file = open("har_messages.json", "w")
+text_file = open("dynamicdata/har_messages.json", "w")
 text_file.write(outMessage)
 text_file.close()
Index: trunk/webapps/cgi-bin/saveCMSmessage.py
===================================================================
--- trunk/webapps/cgi-bin/saveCMSmessage.py	(revision 327)
+++ trunk/webapps/cgi-bin/saveCMSmessage.py	(revision 373)
@@ -11,5 +11,5 @@
    
 # write message to file
-text_file = open("cms_messages.json", "w")
+text_file = open("dynamicdata/cms_messages.json", "w")
 text_file.write(outMessage)
 text_file.close()
Index: trunk/webapps/common/js/displayutils.js
===================================================================
--- trunk/webapps/common/js/displayutils.js	(revision 373)
+++ trunk/webapps/common/js/displayutils.js	(revision 373)
@@ -0,0 +1,8 @@
+/** Hide an html element given its id */
+function hideElementById(id)
+{
+    // hide the element by setting css attribute
+    document.getElementById(id).style.display = 'none'
+}
+
+
Index: trunk/webapps/runTimer.py
===================================================================
--- trunk/webapps/runTimer.py	(revision 373)
+++ trunk/webapps/runTimer.py	(revision 373)
@@ -0,0 +1,24 @@
+#!/usr/bin/python
+# Run a timer and save it to a file
+# This allows for isolation testing of einotebook without
+# Sim Mgr having to run.
+import time
+from datetime import timedelta
+print "Starting elapsed timer ..."
+count = 0
+while True:
+    # Code executed here
+    time.sleep(1)
+    count += 1
+    # elapsedTime = timedelta(seconds=count)
+    # convert integer into hh:mm:ss format
+    lineout =  "{\"elapsedtime\":\"" + str(count) + "\"}"
+    
+    # write message to file
+    text_file = open("dynamicdata/sim_elapsedtime.json", "w")
+    text_file.write(lineout)
+    text_file.close()
+
+    # print count
+
+
Index: trunk/webapps/dynamicdata/sim_elapsedtime.json
===================================================================
--- trunk/webapps/dynamicdata/sim_elapsedtime.json	(revision 372)
+++ trunk/webapps/dynamicdata/sim_elapsedtime.json	(revision 373)
@@ -1,1 +1,1 @@
-{"elapsedtime":"24"}
+{"elapsedtime":"519"}
Index: trunk/webapps/dynamicdata/sim_scriptname.json
===================================================================
--- trunk/webapps/dynamicdata/sim_scriptname.json	(revision 372)
+++ 	(revision )
@@ -1,1 +1,0 @@
-{"filename":"practice_script_2016.xml"}
Index: trunk/webapps/einotebook/notebook.js
===================================================================
--- trunk/webapps/einotebook/notebook.js	(revision 363)
+++ trunk/webapps/einotebook/notebook.js	(revision 373)
@@ -118,5 +118,5 @@
 {
     /** Load the sim time file and extract the seconds */
-    loadJSON("../sim_elapsedtime.json", function(response)
+    loadJSON("../dynamicdata/sim_elapsedtime.json", function(response)
     {
         try {
