Index: trunk/webapps/cgi-bin/saveEvals.py
===================================================================
--- trunk/webapps/cgi-bin/saveEvals.py	(revision 547)
+++ trunk/webapps/cgi-bin/saveEvals.py	(revision 551)
@@ -7,6 +7,8 @@
 output = ""
 for j in range(1, 3):
-    output +=  form.getvalue('group'+str(j))
-    output += ", "
+    rating =  form.getvalue('evaluationGroup'+str(j))
+    if rating is not None:
+        output +=  form.getvalue('evaluationGroup'+str(j))
+        output += ", "
 
 print "Content-type:text/html\r\n\r\n"
Index: trunk/webapps/cgi-bin/saveRatingsToLog.py
===================================================================
--- trunk/webapps/cgi-bin/saveRatingsToLog.py	(revision 551)
+++ trunk/webapps/cgi-bin/saveRatingsToLog.py	(revision 551)
@@ -0,0 +1,16 @@
+#!/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("dynamicdata/ratings.csv", "w")
+text_file.write(outMessage)
+text_file.close()
+
