Index: trunk/webapps/einotebook/scripts/Evaluation.js
===================================================================
--- trunk/webapps/einotebook/scripts/Evaluation.js	(revision 548)
+++ trunk/webapps/einotebook/scripts/Evaluation.js	(revision 551)
@@ -10,4 +10,5 @@
     
     //========== public constants ==========//
+    this.ratingQualities = ["", "Worst","Poor","Average","Good","Best"];
     this.id = Evaluation.id;
     this.ratingGroupName = "evaluationGroup" + this.id;    
@@ -75,6 +76,5 @@
 
         this.rating = givenRating;
-
-        console.log(this.ratingGroupName + " recordRating of " + this.rating )
+        //console.log(this.ratingGroupName + " recordRating of " + this.rating )
     }
 
@@ -103,9 +103,9 @@
                "<table align='right' class='evaluationScale'>" +
                "<tr>" +
-               "<td class='eventRadioButtonSmallScale'>Best</td>" +
-               "<td class='eventRadioButtonSmallScale'>Good</td>" +
-               "<td class='eventRadioButtonSmallScale'>Average</td>" +
-               "<td class='eventRadioButtonSmallScale'>Poor</td>" +
-               "<td class='eventRadioButtonSmallScale'>Worst</td>" +
+               "<td class='eventRadioButtonSmallScale'>"+this.ratingQualities[5]+"</td>" +
+               "<td class='eventRadioButtonSmallScale'>"+this.ratingQualities[4]+"</td>" +
+               "<td class='eventRadioButtonSmallScale'>"+this.ratingQualities[3]+"</td>" +
+               "<td class='eventRadioButtonSmallScale'>"+this.ratingQualities[2]+"</td>" +
+               "<td class='eventRadioButtonSmallScale'>"+this.ratingQualities[1]+"</td>" +
                "</tr>" +
                "<tr>" +
Index: trunk/webapps/einotebook/scripts/Event.js
===================================================================
--- trunk/webapps/einotebook/scripts/Event.js	(revision 540)
+++ trunk/webapps/einotebook/scripts/Event.js	(revision 551)
@@ -178,5 +178,5 @@
 	function focus()
 	{
-		/* This method was discarded because it moved the scroll bar of the parent of
+		/* This next 3 lines were discarded because it moved the scroll bar of the parent of
 		 * the given window in addition to the scroll bar of the given window..
 		var positionOfPound = window.location.indexOf("#");
@@ -184,5 +184,5 @@
 		window.location = rootLocation + "#" + eventAnchorName;
 		*/
-		events.win.scrollTo(0, absoluteTop(events.doc.getElementById(this.eventHeaderID)));
+                events.win.scrollTo(0, absoluteTop(events.doc.getElementById(this.eventHeaderID)));
 	}
 	
@@ -195,5 +195,5 @@
         if (events.doc.getElementById(this.eventHeaderID) != null)
         {
-		events.doc.getElementById(this.eventHeaderID).style.borderColor = "blue";
+        	events.doc.getElementById(this.eventHeaderID).style.borderColor = "blue";
 		events.doc.getElementById(this.eventHeaderID).style.backgroundColor = "yellow";
 		events.doc.getElementById(this.eventHeaderID).style.color = "black";
