Index: trunk/src/tmcsim/client/ATMSBatchDriver.java
===================================================================
--- trunk/src/tmcsim/client/ATMSBatchDriver.java	(revision 140)
+++ trunk/src/tmcsim/client/ATMSBatchDriver.java	(revision 152)
@@ -32,4 +32,5 @@
 import javax.swing.Timer;
 import javax.swing.UIManager;
+import tmcsim.cadsimulator.CADServer;
 import tmcsim.common.SimulationException;
 import tmcsim.interfaces.CADClientInterface;
@@ -158,5 +159,5 @@
         theView = new ATMSBatchViewer(this, new ArrayList<String>(incidents.keySet()));
         theView.setVisible(true);
-        theView.update("0:00", eventQueue);
+        theView.update("0:00", "1:11", eventQueue);
 
         // Create a timer that fetches the simulation time every second.
@@ -167,4 +168,5 @@
             {
                 String currentClock = "";
+                String currentATMStime = "";
                 Date simClock = new Date();                
                 // Obtain the simulation time from the CAD server
@@ -173,4 +175,7 @@
                     long simtime = theCoorInt.getCurrentSimulationTime();
                     currentClock = formatInterval(simtime);
+                    long ATMStime = theCoorInt.getATMStime();       
+                    Date atmsdate = new Date(ATMStime);
+                    currentATMStime = formatter.format(atmsdate);
                     try {
                         simClock = formatter.parse(currentClock);
@@ -231,5 +236,6 @@
                         }
                     }
-                    theView.update(currentClock, eventQueue);
+                    
+                    theView.update(currentClock, currentATMStime, eventQueue);
                 }
             }
@@ -322,5 +328,5 @@
         }
         // Now refresh the view with the updated queue of events
-        theView.update("0:00", eventQueue);
+        theView.update("0:00", "0:00", eventQueue);
     }
     
