Index: trunk/src/tmcsim/client/ATMSBatchViewer.java
===================================================================
--- trunk/src/tmcsim/client/ATMSBatchViewer.java	(revision 152)
+++ trunk/src/tmcsim/client/ATMSBatchViewer.java	(revision 158)
@@ -75,4 +75,5 @@
 
         setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
+        setTitle("ATMS Batch Driver");
 
         lstEvents.setFont(new java.awt.Font("Noto Mono", 0, 12)); // NOI18N
Index: trunk/src/tmcsim/client/ATMSBatchViewer.form
===================================================================
--- trunk/src/tmcsim/client/ATMSBatchViewer.form	(revision 152)
+++ trunk/src/tmcsim/client/ATMSBatchViewer.form	(revision 158)
@@ -4,4 +4,5 @@
   <Properties>
     <Property name="defaultCloseOperation" type="int" value="3"/>
+    <Property name="title" type="java.lang.String" value="ATMS Batch Driver"/>
   </Properties>
   <SyntheticProperties>
Index: trunk/src/tmcsim/client/ATMSBatchDriver.java
===================================================================
--- trunk/src/tmcsim/client/ATMSBatchDriver.java	(revision 157)
+++ trunk/src/tmcsim/client/ATMSBatchDriver.java	(revision 158)
@@ -141,4 +141,5 @@
             System.exit(0);
         }
+        // Initialize the highway model
         incidents = new HashMap<String, List<String>> ();
         highways = new Highways(
@@ -175,7 +176,8 @@
                     long simtime = theCoorInt.getCurrentSimulationTime();
                     currentClock = formatInterval(simtime);
-                    long ATMStime = theCoorInt.getATMStime();       
-                    Date atmsdate = new Date(ATMStime);
-                    currentATMStime = formatter.format(atmsdate);
+                    // For Debugging, show the ATMS time
+//                    long ATMStime = theCoorInt.getATMStime();       
+//                    Date atmsdate = new Date(ATMStime);
+//                    currentATMStime = formatter.format(atmsdate);
                     try {
                         simClock = formatter.parse(currentClock);
@@ -188,4 +190,5 @@
                 } catch (RemoteException ex)
                 {
+                    System.out.println("Remote Exception reading sim or ATMS clock time");
                     Logger.getLogger(ATMSBatchDriver.class.getName()).log(Level.SEVERE, null, ex);
                 }
