Index: trunk/src/tmcsim/simulationmanager/SimulationManager.java
===================================================================
--- trunk/src/tmcsim/simulationmanager/SimulationManager.java	(revision 507)
+++ trunk/src/tmcsim/simulationmanager/SimulationManager.java	(revision 559)
@@ -47,4 +47,8 @@
 
     private static final String CONFIG_FILE_NAME = "sim_manager_config.properties";
+    /*
+     * Name of filesystem folder that contains Scenario xml files.  
+    */
+    public static final String kScenarioFolder = "Scenarios";
     /**
      * Error logger.
@@ -225,5 +229,5 @@
             {
                 arg1 = args[0];
-                File scriptFile = new File("scripts"+ System.getProperty("file.separator") + arg1);
+                File scriptFile = new File(kScenarioFolder+ System.getProperty("file.separator") + arg1);
                 // if the script file exists, load it and show name in title bar
                 if (scriptFile.exists())
@@ -233,11 +237,11 @@
                     app.theSimManagerView.setTitle("Simulation Manager: " + arg1);
                     simManLogger.logp(Level.INFO,"SimulationManager","Main",
-                            "Sim Mgr starting with script file: " + arg1 + ".");
+                            "Sim Mgr starting with scenario file: " + arg1 + ".");
                 }
                 else
                 {
                     simManLogger.logp(Level.INFO,"SimulationManager","Main",
-                            "Script file not found: " + arg1 +
-                            ". Starting with no script.");
+                            "Scenario file not found: " + arg1 +
+                            ". Starting with no scenario.");
                 }
             }
Index: trunk/src/tmcsim/simulationmanager/actions/GotoTimeIndexAction.java
===================================================================
--- trunk/src/tmcsim/simulationmanager/actions/GotoTimeIndexAction.java	(revision 2)
+++ trunk/src/tmcsim/simulationmanager/actions/GotoTimeIndexAction.java	(revision 559)
@@ -19,4 +19,5 @@
  * to ensure the current simulation is paused, to clear all current
  * incident info from the view, and then to reset the simulation time.
+ * Currently this action is invoked from "File>GoTo" menu.
  * @author Matthew Cechini
  */
