Index: trunk/webapps/einotebook/roles/roles.js
===================================================================
--- trunk/webapps/einotebook/roles/roles.js	(revision 540)
+++ trunk/webapps/einotebook/roles/roles.js	(revision 551)
@@ -49,4 +49,7 @@
 function highlightLatestEvent() 
 {
+    // workaround for defect #212 is disable this function
+    return; 
+
     Roles.events.setEmphasis();  // Set text colors on all events
 
@@ -69,6 +72,8 @@
 	Roles.incidents = theIncidents;
 	Roles.events = theEvents;
-	Roles.events.win = document.getElementById("view").contentWindow;
-	Roles.events.doc = getDocumentFromFrame('view');
+    // workaround for defect #212 is delete these two lines so they don't conflict
+    //   with the Scripts.events.win
+	//Roles.events.win = document.getElementById("view").contentWindow;
+	//Roles.events.doc = getDocumentFromFrame('view');
     // reset SELECT box to default value
     document.getElementById("desiredRole").value = "TELEPHONE CONVERSATION";
@@ -108,5 +113,5 @@
 	
 	// display events in iframe
-	getDocumentFromFrame('view').body.innerHTML = html;	
+	getDocumentFromFrame('rolesview').body.innerHTML = html;	
    
 	// resize iframe to appropriate height
@@ -150,7 +155,7 @@
 {
     var height = document.documentElement.clientHeight;
-    height -= pageY(document.getElementById('view'));
+    height -= pageY(document.getElementById('rolesview'));
     height = (height < 0) ? 0 : height - 10;
-    document.getElementById('view').style.height = height + 'px';
+    document.getElementById('rolesview').style.height = height + 'px';
 }
 
Index: trunk/webapps/einotebook/roles/index.html
===================================================================
--- trunk/webapps/einotebook/roles/index.html	(revision 548)
+++ trunk/webapps/einotebook/roles/index.html	(revision 551)
@@ -9,10 +9,10 @@
     <script type="text/javascript" src="roles.js"></script> 
     <script type="text/javascript" src="../scripts/cookies.js"></script>
-    <title>Script</title>
+    <title>Roles</title>
   </head>
   <body>
    
-    <button class="jumpToCurrentEvent" 
-            onclick="jumpToLastExecutedEvent()">Jump to Current Event</button>
+    <!--button class="jumpToCurrentEvent" 
+            onclick="jumpToLastExecutedEvent()">Jump to Current Event</button-->
     <!-- A combo box for which role is to be displayed on the page -->
     <select id="desiredRole" onchange="changeRole()">
@@ -22,5 +22,5 @@
       <option value="CHP RADIO">CHP RADIO</option>
     </select>
-    <iframe id='view' src='../script/scrollframe.html' frameborder='0' scrolling='yes'
+    <iframe id='rolesview' src='../script/scrollframe.html' frameborder='0' scrolling='yes'
             width='100%'></iframe>
 
