Index: trunk/webapps/cgi-bin/saveHARmessage.py
===================================================================
--- trunk/webapps/cgi-bin/saveHARmessage.py	(revision 327)
+++ trunk/webapps/cgi-bin/saveHARmessage.py	(revision 327)
@@ -0,0 +1,22 @@
+#!/usr/bin/python
+# Save parameter to a file
+# Import modules for CGI handling 
+import cgi, cgitb, os 
+
+# Create instance of FieldStorage 
+form = cgi.FieldStorage() 
+
+# Get data from fields
+outMessage = form.getvalue('msg')
+   
+# write message to file
+text_file = open("har_messages.json", "w")
+text_file.write(outMessage)
+text_file.close()
+
+#print "Content-type:text/html\n\n"
+#print "<html><body>"
+#print "Here is the message<br>"
+#print outMessage
+#print "<br>"
+#print "</body></html>"
Index: trunk/webapps/cgi-bin/saveCMSmessage.py
===================================================================
--- trunk/webapps/cgi-bin/saveCMSmessage.py	(revision 327)
+++ trunk/webapps/cgi-bin/saveCMSmessage.py	(revision 327)
@@ -0,0 +1,22 @@
+#!/usr/bin/python
+# Save parameter to a file
+# Import modules for CGI handling 
+import cgi, cgitb, os 
+
+# Create instance of FieldStorage 
+form = cgi.FieldStorage() 
+
+# Get data from fields
+outMessage = form.getvalue('msg')
+   
+# write message to file
+text_file = open("cms_messages.json", "w")
+text_file.write(outMessage)
+text_file.close()
+
+#print "Content-type:text/html\n\n"
+#print "<html><body>"
+#print "Here is the message<br>"
+#print outMessage
+#print "<br>"
+#print "</body></html>"
Index: trunk/webapps/cgi-bin/saveMessage.py
===================================================================
--- trunk/webapps/cgi-bin/saveMessage.py	(revision 311)
+++ 	(revision )
@@ -1,22 +1,0 @@
-#!/usr/bin/python
-# Save parameter to a file
-# Import modules for CGI handling 
-import cgi, cgitb, os 
-
-# Create instance of FieldStorage 
-form = cgi.FieldStorage() 
-
-# Get data from fields
-outMessage = form.getvalue('msg')
-   
-# write message to file
-text_file = open("cms_messages.json", "w")
-text_file.write(outMessage)
-text_file.close()
-
-#print "Content-type:text/html\n\n"
-#print "<html><body>"
-#print "Here is the message<br>"
-#print outMessage
-#print "<br>"
-#print "</body></html>"
