public string getStartDate(string locationName)
 {
     location   = new Location();
     locationDB = new LocationDB();
     location.setName(locationName);
     locationDB.selectStartDate(location);
     return(location.getStartDate());
 }