This is UTC Time:
request = New HTTP Request(
URL("google.com"),
Method("GET")
);
request << Send;
headers = request << Get Response Headers();
show(headers["date"]);
headers["date"] is a JSL Date object in UTC
so the timezone offset would be:
utc = headers["date"];
Hour(today()) - Hour(utc);