Index: trunk/webapps/gotoxmltime.html
===================================================================
--- trunk/webapps/gotoxmltime.html	(revision 348)
+++ trunk/webapps/gotoxmltime.html	(revision 351)
@@ -8,8 +8,13 @@
     overflow-x:hidden;
 }
+#clockdiv {
+    font-size: xx-large;
+    font-weight: bold;
+    font-family: "Lucida Console", Monaco, monospace;
+}
 </style>
 <body>
 <!-- Prototype for a display that scrolls to the current time -->
-<div id="timediv">0:00</div>
+<div id="clockdiv">0:00</div>
 <div> <button onclick="scrollToCurrent()">Goto Current Item</button></div>
 <div id="main" class="pic-container"></div>
@@ -20,5 +25,5 @@
 var xmlDoc;
 var currElement;
-var timeDiv = document.getElementById("timediv");
+var clockdiv = document.getElementById("clockdiv");
 /** Load the sim clock file and extract the clock string */
 function gettime()
@@ -28,5 +33,5 @@
         simclockjson = JSON.parse(response);
         clockstring = simclockjson.clock;
-        timeDiv.innerHTML = clockstring;  // Display current time
+        clockdiv.innerHTML = clockstring;  // Display current time
         // Extract the seconds digits
         digits = clockstring.substring(clockstring.length-2)
@@ -55,4 +60,5 @@
             div.style.color = "black";
             div.style.background = "GhostWhite";
+            div.style.height = 30;
             div.innerHTML = MHSTime + " " + xmlDoc.getElementsByTagName("description")[idx].childNodes[0].nodeValue;
             // Append it to the parent div
@@ -68,5 +74,5 @@
     if (currElement != null)
     {
-        currTime = timediv.innerHTML;
+        currTime = clockdiv.innerHTML;
         // Find the element with the id = seconds digits
         target = findNearestElem();
