Javascript Date fromUnixTime(value)
Date.fromUnixTime = function(value) { return new Date(value * 1000); };