I'm looking for a function that receives a time, source timezone and a destination and returns time in the destination timezone
timezones are in the following format: 'utc', 'est', 'edt', 'gmt', ...
function convertTime(time,fromZone,toZone){
// do conversion
return convertedTime;
}