AS3/XML show only a part of the parsed timestamp

The XML is listed as so (only a snippet of coarse):

<fh:FlightHistory FlightHistoryId="163871394" **DepartureDate="2009-06-30 15:00"** ArrivalDate="2009-06-30 16:35" PublishedDepartureDate="2009-06-30 15:00"

…now when parsing the DepartureDate=“2009-06-30 15:00” the entire date is displayed, as should be…

How can I set up my AS3 to only display the 15:00?

The parsed path to the xml node is as follows:

Flights.flight_mc.schedTime_txt.text = contentInput.channel.item.someNamespace::FlightHistory[0].**@DepartureDate;**

Thanks for all the support!