I am calculating the date using the number of seconds since epoch at UTC.
here is how I am currently doing it:
var LastUpdatedTime = data.LastUpdated;
myDate = new Date(1000 * LastUpdatedTime);
var LastUpdatedTime = myDate.toLocaleString();
In Chrome i see: 2/26/2013 9:57:35 AM
Which is exactly what I want
In Safari I see: February 26, 2013 9:27:34 AM EST
Any advice on how to get Safari to format the date the same way Chrome does?