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
-
-
