Index: trunk/webapps/einotebook/index.html
===================================================================
--- trunk/webapps/einotebook/index.html	(revision 372)
+++ trunk/webapps/einotebook/index.html	(revision 386)
@@ -1,5 +1,5 @@
 <html>
   <head>
-    <title>Electronic Instructor Notebook v0.3</title>
+    <title>Electronic Instructor Notebook v</title>
     <meta name="apple-mobile-web-app-capable" content="yes">
     <meta name="viewport" content="width=device-width; initial-scale=1.0; user-scalable=0;">
@@ -9,4 +9,6 @@
     <link rel="stylesheet" type="text/css" href="ipadapp.css">
     <script type="text/javascript" src="../common/js/fileutils.js"></script> 
+    <script type="text/javascript" src="../common/js/displayutils.js"></script> 
+    <script type="text/javascript" src="../common/js/revision.js"></script>
     <script type="text/javascript" src="scripts/cookies.js"></script>
     <script type="text/javascript" src="scripts/Events.js"></script>
@@ -25,5 +27,5 @@
     <script type="text/javascript" src="notebook.js"></script> 
   </head>
-  <body onLoad="setupNotebook(); run();">
+  <body onLoad="showRevision(); setupNotebook(); run();">
     
     <table class="notebook">
Index: trunk/webapps/einotebook/scripts/LoadEvents.js
===================================================================
--- trunk/webapps/einotebook/scripts/LoadEvents.js	(revision 374)
+++ trunk/webapps/einotebook/scripts/LoadEvents.js	(revision 386)
@@ -24,6 +24,7 @@
             if (currEvt.childNodes[child].localName != undefined)
             {
+                var tagName = currEvt.childNodes[child].localName.toUpperCase();
                 // Determine the tag type and dispatch it for further processing
-                switch(currEvt.childNodes[child].localName)
+                switch(tagName)
                 {
                     case "TIME_INDEX": 
@@ -54,5 +55,5 @@
                         break;
                     case "TELEPHONE": 
-                        telProp = new Evaluation("Telephone Conversation", 
+                        telProp = new Evaluation("TELEPHONE CONVERSATION", 
                                  parseTelephone(currEvt.childNodes[child]) );  
                         evalarray.push(telProp);
@@ -66,8 +67,35 @@
                         }
                         break;
-                    case "TMT_RADIO":  break;
-                    case "MAINTENANCE_RADIO": break;
-                    // case *_EVALUATION: break;
-
+
+                    case "TMT_RADIO":  
+                    case "MAINTENANCE_RADIO": 
+                        var result = new Array();   
+                        result.push("Details:");
+                        result.push(currEvt.childNodes[child].textContent.trim());
+                        var radProp = new Property(tagName, result ); 
+                        proparray.push(radProp);
+                        break;
+
+                    case "FACILITATOR_EVALUATION": 
+                    case "CAD_EVALUATION":
+                    case "ATMS_EVALUATION":
+                    case "ACTIVITY_LOG_EVALUATION":
+                    case "RADIO_EVALUATION":
+                        // remove the suffix
+                        var evalType = tagName.replace("_EVALUATION","");
+                        // Build the evaluation item
+                        var facEval = new Evaluation(evalType, 
+                                 parseEvaluation(currEvt.childNodes[child]) );  
+                        evalarray.push(facEval);
+                        break;
+                        
+                    case "CMS_EVALUATION":
+                        // TODO: Complete this partial implementation
+                        var result = new Array();   
+                        result.push("Expected Action:");
+                        result.push("Action will appear here.");
+                        var cmsEval = new Evaluation("CMS", result);
+                        evalarray.push(cmsEval);
+                        break;
                 }
             }
@@ -134,4 +162,21 @@
                 result.push(dialog[line].attributes["Role"].value);
                 result.push(dialog[line].textContent);
+            }
+        }
+    }
+    return result;
+}
+function parseEvaluation(element)
+{
+    var result = new Array();
+    var details = element.getElementsByTagName("EXPECTED_ACTION");
+    if (details.length > 0)
+    {
+        for (detail in details)
+        {
+            if (details[detail].textContent != undefined)
+            {                
+                result.push("Expected Action:");
+                result.push(details[detail].textContent.trim());
             }
         }
Index: trunk/webapps/einotebook/scripts/Evaluation.js
===================================================================
--- trunk/webapps/einotebook/scripts/Evaluation.js	(revision 359)
+++ trunk/webapps/einotebook/scripts/Evaluation.js	(revision 386)
@@ -37,5 +37,5 @@
 		var text = "<table class='evaluation'>" +
 	   	   		   "<tr>" +
-	   	   		   "<th class='evaluationType' colspan='2'>" + type + " Evalution</th>" +
+	   	   		   "<th class='evaluationType' colspan='2'>" + type + " Evaluation</th>" +
 	   	   		   "</tr>" +
 	   	   		   "<tr>" +
Index: trunk/webapps/einotebook/maps/index.html
===================================================================
--- trunk/webapps/einotebook/maps/index.html	(revision 372)
+++ trunk/webapps/einotebook/maps/index.html	(revision 386)
@@ -31,6 +31,10 @@
 	
 	    <!-- The Map -->
-	    <div id="googleMapContent" style="display:none;"><iframe frameborder=0 width=740 height=600 
-	    	scrolling=no src=googleMap.html marginheight=0 marginwidth=0></iframe></div>
+	    <div id="googleMapContent" style="display:none;">
+<iframe src="https://www.google.com/maps/d/embed?mid=11RLV4iMbnXW7HlZCATvTa9z1Y01gngzR&zoom=9" width="640" height="480"></iframe>
+        <div>
+<!--
+<iframe frameborder=0 width=740 height=600 
+	    	scrolling=no src="https://drive.google.com/open?id=11RLV4iMbnXW7HlZCATvTa9z1Y01gngzR&usp=sharing" marginheight=0 marginwidth=0></iframe>  -->
 
         <div id="atmsMapContent" style="display:inline;"><iframe frameborder=0 width=740 height=600 
