Time2Num(d [, f [, k ]])
d
A time string in the format supplied by f that also conforms to the locale given by k.
f (Optional)
A time format string. If you do not include a value for f, the function uses the default time format H:MM:SS A.
k (Optional)
A locale identifier string that conforms to the locale naming standards. If you do not include a value for k, or if k is invalid, the function uses the ambient locale.
The function returns a value of 0 if any of the following conditions are true:
1
76393001 to a user in California on Pacific Standard Time, and 76033001 when that same user is on Pacific Daylight Savings Time.
Time2Num(“13:13:13″, “HH:MM:SS”) - Time2Num(“13:13:13 GMT”, “HH:MM:SS Z”)) / (60 * 60 * 1000)
8 to a user in Vancouver and 5 to a user in Ottawa when on Standard Time. On Daylight Savings Time, the returned values are 7 and 4, respectively.

Time2Num