<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Auto detect a time zone with JavaScript</title>
	<atom:link href="http://www.onlineaspect.com/2007/06/08/auto-detect-a-time-zone-with-javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.onlineaspect.com/2007/06/08/auto-detect-a-time-zone-with-javascript/</link>
	<description>a blog about building stuff on the web</description>
	<lastBuildDate>Wed, 11 Aug 2010 16:25:07 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Brad</title>
		<link>http://www.onlineaspect.com/2007/06/08/auto-detect-a-time-zone-with-javascript/comment-page-2/#comment-1198</link>
		<dc:creator>Brad</dc:creator>
		<pubDate>Tue, 10 Aug 2010 23:56:03 +0000</pubDate>
		<guid isPermaLink="false">http://onlineaspect.com/2007/06/08/auto-detect-a-time-zone-with-javascript/#comment-1198</guid>
		<description>&lt;script type=&quot;text/javascript&quot;&gt; 
 
var d = new Date() 
var gmtHours = -d.getTimezoneOffset()/60; 
document.write(&quot;The local time zone is: GMT &quot; + gmtHours); 
 
&lt;/script&gt;  </description>
		<content:encoded><![CDATA[<p>&lt;script type=&quot;text/javascript&quot;&gt; </p>
<p>var d = new Date()<br />
var gmtHours = -d.getTimezoneOffset()/60;<br />
document.write(&quot;The local time zone is: GMT &quot; + gmtHours); </p>
<p>&lt;/script&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nicolas</title>
		<link>http://www.onlineaspect.com/2007/06/08/auto-detect-a-time-zone-with-javascript/comment-page-2/#comment-1217</link>
		<dc:creator>Nicolas</dc:creator>
		<pubDate>Fri, 06 Aug 2010 21:47:08 +0000</pubDate>
		<guid isPermaLink="false">http://onlineaspect.com/2007/06/08/auto-detect-a-time-zone-with-javascript/#comment-1217</guid>
		<description>I updated the list that chris gave to include missing timezones: 
 
$timezones = array ( 
        &#039;-12:00,0&#039; =&gt; &#039;Etc/GMT-12&#039;,  
        &#039;-11:00,0&#039; =&gt; &#039;Pacific/Niue&#039;,  
        &#039;-10:00,0&#039; =&gt; &#039;US/Hawaii&#039;, 
        &#039;-10:00,1&#039; =&gt; &#039;America/Adak&#039;, 
        &#039;-09:00,0&#039; =&gt; &#039;Pacific/Gambier&#039;, 
        &#039;-09:00,1&#039; =&gt; &#039;US/Alaska&#039;, 
        &#039;-08:00,0&#039; =&gt; &#039;Pacific/Pitcairn&#039;,  
        &#039;-08:00,1&#039; =&gt; &#039;US/Pacific&#039;,  
        &#039;-07:00,0&#039; =&gt; &#039;US/Arizona&#039;,  
        &#039;-07:00,1&#039; =&gt; &#039;US/Mountain&#039;,  
        &#039;-06:00,0&#039; =&gt; &#039;Canada/Saskatchewan&#039;,  
        &#039;-06:00,1&#039; =&gt; &#039;US/Central&#039;,  
        &#039;-05:00,0&#039; =&gt; &#039;US/Indiana-Starke&#039;,  
        &#039;-05:00,1&#039; =&gt; &#039;US/Eastern&#039;,  
        &#039;-04:00,1&#039; =&gt; &#039;Canada/Atlantic&#039;,  
        &#039;-04:00,0&#039; =&gt; &#039;America/Caracas&#039;,  
        &#039;-03:30,1&#039; =&gt; &#039;Canada/Newfoundland&#039;,  
        &#039;-03:00,1&#039; =&gt; &#039;America/Godthab&#039;,  
        &#039;-03:00,0&#039; =&gt; &#039;America/Argentina/Buenos_Aires&#039;, 
        &#039;-02:00,0&#039; =&gt; &#039;America/Noronha&#039;, 
        &#039;-02:00,1&#039; =&gt; &#039;Atlantic/South_Georgia&#039;,  
        &#039;-01:00,1&#039; =&gt; &#039;Atlantic/Azores&#039;,  
        &#039;-01:00,0&#039; =&gt; &#039;Atlantic/Cape_Verde&#039;,  
        &#039;00:00,0&#039;  =&gt; &#039;Africa/Casablanca&#039;,  
        &#039;00:00,1&#039;  =&gt; &#039;Europe/Dublin&#039;,  
        &#039;+01:00,1&#039; =&gt; &#039;Europe/Paris&#039;,  
        &#039;+01:00,0&#039; =&gt; &#039;Africa/Algiers&#039;,  
        &#039;+02:00,1&#039; =&gt; &#039;Europe/Athens&#039;,  
        &#039;+02:00,0&#039; =&gt; &#039;Africa/Harare&#039;,  
        &#039;+03:00,1&#039; =&gt; &#039;Europe/Moscow&#039;,  
        &#039;+03:00,0&#039; =&gt; &#039;Asia/Kuwait&#039;,  
        &#039;+03:30,0&#039; =&gt; &#039;Asia/Tehran&#039;,  
        &#039;+04:00,0&#039; =&gt; &#039;Asia/Muscat&#039;,  
        &#039;+04:00,1&#039; =&gt; &#039;Asia/Baku&#039;,  
        &#039;+04:30,0&#039; =&gt; &#039;Asia/Kabul&#039;,  
        &#039;+05:00,1&#039; =&gt; &#039;Asia/Yekaterinburg&#039;,  
        &#039;+05:00,0&#039; =&gt; &#039;Asia/Karachi&#039;,  
        &#039;+05:30,0&#039; =&gt; &#039;Asia/Kolkata&#039;,  
        &#039;+05:45,0&#039; =&gt; &#039;Asia/Katmandu&#039;,  
        &#039;+06:00,0&#039; =&gt; &#039;Asia/Dhaka&#039;,  
        &#039;+06:00,1&#039; =&gt; &#039;Asia/Almaty&#039;,  
        &#039;+06:30,0&#039; =&gt; &#039;Asia/Rangoon&#039;,  
        &#039;+07:00,1&#039; =&gt; &#039;Asia/Krasnoyarsk&#039;,  
        &#039;+07:00,0&#039; =&gt; &#039;Asia/Bangkok&#039;,  
        &#039;+08:00,0&#039; =&gt; &#039;Asia/Hong_Kong&#039;,  
        &#039;+08:00,1&#039; =&gt; &#039;Australia/Perth&#039;, 
        &#039;+08:45,0&#039; =&gt; &#039;Australia/Eucla&#039;, 
        &#039;+09:00,1&#039; =&gt; &#039;Asia/Yakutsk&#039;,  
        &#039;+09:00,0&#039; =&gt; &#039;Asia/Seoul&#039;,  
        &#039;+09:30,0&#039; =&gt; &#039;Australia/Darwin&#039;,  
        &#039;+09:30,1&#039; =&gt; &#039;Australia/Adelaide&#039;,  
        &#039;+10:00,0&#039; =&gt; &#039;Australia/Brisbane&#039;,  
        &#039;+10:00,1&#039; =&gt; &#039;Australia/Melbourne&#039;, 
        &#039;+10:30,1&#039; =&gt; &#039;Australia/Lord_Howe&#039;, 
        &#039;+11:00,0&#039; =&gt; &#039;Pacific/Noumea&#039;, 
        &#039;+11:00,1&#039; =&gt; &#039;Asia/Magadan&#039;, 
        &#039;+11:30,0&#039; =&gt; &#039;Pacific/Norfolk&#039;, 
        &#039;+12:00,1&#039; =&gt; &#039;Pacific/Auckland&#039;,  
        &#039;+12:00,0&#039; =&gt; &#039;Pacific/Fiji&#039;, 
        &#039;+12:45,1&#039; =&gt; &#039;Pacific/Chatham&#039;, 
        &#039;+13:00,0&#039; =&gt; &#039;Pacific/Tongatapu&#039;, 
        &#039;+14:00,0&#039; =&gt; &#039;Pacific/Kiritimati&#039;, 
    ); </description>
		<content:encoded><![CDATA[<p>I updated the list that chris gave to include missing timezones: </p>
<p>$timezones = array (<br />
        &#039;-12:00,0&#039; =&gt; &#039;Etc/GMT-12&#039;,<br />
        &#039;-11:00,0&#039; =&gt; &#039;Pacific/Niue&#039;,<br />
        &#039;-10:00,0&#039; =&gt; &#039;US/Hawaii&#039;,<br />
        &#039;-10:00,1&#039; =&gt; &#039;America/Adak&#039;,<br />
        &#039;-09:00,0&#039; =&gt; &#039;Pacific/Gambier&#039;,<br />
        &#039;-09:00,1&#039; =&gt; &#039;US/Alaska&#039;,<br />
        &#039;-08:00,0&#039; =&gt; &#039;Pacific/Pitcairn&#039;,<br />
        &#039;-08:00,1&#039; =&gt; &#039;US/Pacific&#039;,<br />
        &#039;-07:00,0&#039; =&gt; &#039;US/Arizona&#039;,<br />
        &#039;-07:00,1&#039; =&gt; &#039;US/Mountain&#039;,<br />
        &#039;-06:00,0&#039; =&gt; &#039;Canada/Saskatchewan&#039;,<br />
        &#039;-06:00,1&#039; =&gt; &#039;US/Central&#039;,<br />
        &#039;-05:00,0&#039; =&gt; &#039;US/Indiana-Starke&#039;,<br />
        &#039;-05:00,1&#039; =&gt; &#039;US/Eastern&#039;,<br />
        &#039;-04:00,1&#039; =&gt; &#039;Canada/Atlantic&#039;,<br />
        &#039;-04:00,0&#039; =&gt; &#039;America/Caracas&#039;,<br />
        &#039;-03:30,1&#039; =&gt; &#039;Canada/Newfoundland&#039;,<br />
        &#039;-03:00,1&#039; =&gt; &#039;America/Godthab&#039;,<br />
        &#039;-03:00,0&#039; =&gt; &#039;America/Argentina/Buenos_Aires&#039;,<br />
        &#039;-02:00,0&#039; =&gt; &#039;America/Noronha&#039;,<br />
        &#039;-02:00,1&#039; =&gt; &#039;Atlantic/South_Georgia&#039;,<br />
        &#039;-01:00,1&#039; =&gt; &#039;Atlantic/Azores&#039;,<br />
        &#039;-01:00,0&#039; =&gt; &#039;Atlantic/Cape_Verde&#039;,<br />
        &#039;00:00,0&#039;  =&gt; &#039;Africa/Casablanca&#039;,<br />
        &#039;00:00,1&#039;  =&gt; &#039;Europe/Dublin&#039;,<br />
        &#039;+01:00,1&#039; =&gt; &#039;Europe/Paris&#039;,<br />
        &#039;+01:00,0&#039; =&gt; &#039;Africa/Algiers&#039;,<br />
        &#039;+02:00,1&#039; =&gt; &#039;Europe/Athens&#039;,<br />
        &#039;+02:00,0&#039; =&gt; &#039;Africa/Harare&#039;,<br />
        &#039;+03:00,1&#039; =&gt; &#039;Europe/Moscow&#039;,<br />
        &#039;+03:00,0&#039; =&gt; &#039;Asia/Kuwait&#039;,<br />
        &#039;+03:30,0&#039; =&gt; &#039;Asia/Tehran&#039;,<br />
        &#039;+04:00,0&#039; =&gt; &#039;Asia/Muscat&#039;,<br />
        &#039;+04:00,1&#039; =&gt; &#039;Asia/Baku&#039;,<br />
        &#039;+04:30,0&#039; =&gt; &#039;Asia/Kabul&#039;,<br />
        &#039;+05:00,1&#039; =&gt; &#039;Asia/Yekaterinburg&#039;,<br />
        &#039;+05:00,0&#039; =&gt; &#039;Asia/Karachi&#039;,<br />
        &#039;+05:30,0&#039; =&gt; &#039;Asia/Kolkata&#039;,<br />
        &#039;+05:45,0&#039; =&gt; &#039;Asia/Katmandu&#039;,<br />
        &#039;+06:00,0&#039; =&gt; &#039;Asia/Dhaka&#039;,<br />
        &#039;+06:00,1&#039; =&gt; &#039;Asia/Almaty&#039;,<br />
        &#039;+06:30,0&#039; =&gt; &#039;Asia/Rangoon&#039;,<br />
        &#039;+07:00,1&#039; =&gt; &#039;Asia/Krasnoyarsk&#039;,<br />
        &#039;+07:00,0&#039; =&gt; &#039;Asia/Bangkok&#039;,<br />
        &#039;+08:00,0&#039; =&gt; &#039;Asia/Hong_Kong&#039;,<br />
        &#039;+08:00,1&#039; =&gt; &#039;Australia/Perth&#039;,<br />
        &#039;+08:45,0&#039; =&gt; &#039;Australia/Eucla&#039;,<br />
        &#039;+09:00,1&#039; =&gt; &#039;Asia/Yakutsk&#039;,<br />
        &#039;+09:00,0&#039; =&gt; &#039;Asia/Seoul&#039;,<br />
        &#039;+09:30,0&#039; =&gt; &#039;Australia/Darwin&#039;,<br />
        &#039;+09:30,1&#039; =&gt; &#039;Australia/Adelaide&#039;,<br />
        &#039;+10:00,0&#039; =&gt; &#039;Australia/Brisbane&#039;,<br />
        &#039;+10:00,1&#039; =&gt; &#039;Australia/Melbourne&#039;,<br />
        &#039;+10:30,1&#039; =&gt; &#039;Australia/Lord_Howe&#039;,<br />
        &#039;+11:00,0&#039; =&gt; &#039;Pacific/Noumea&#039;,<br />
        &#039;+11:00,1&#039; =&gt; &#039;Asia/Magadan&#039;,<br />
        &#039;+11:30,0&#039; =&gt; &#039;Pacific/Norfolk&#039;,<br />
        &#039;+12:00,1&#039; =&gt; &#039;Pacific/Auckland&#039;,<br />
        &#039;+12:00,0&#039; =&gt; &#039;Pacific/Fiji&#039;,<br />
        &#039;+12:45,1&#039; =&gt; &#039;Pacific/Chatham&#039;,<br />
        &#039;+13:00,0&#039; =&gt; &#039;Pacific/Tongatapu&#039;,<br />
        &#039;+14:00,0&#039; =&gt; &#039;Pacific/Kiritimati&#039;,<br />
    );</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh Fraser</title>
		<link>http://www.onlineaspect.com/2007/06/08/auto-detect-a-time-zone-with-javascript/comment-page-2/#comment-1092</link>
		<dc:creator>Josh Fraser</dc:creator>
		<pubDate>Thu, 08 Jul 2010 05:30:39 +0000</pubDate>
		<guid isPermaLink="false">http://onlineaspect.com/2007/06/08/auto-detect-a-time-zone-with-javascript/#comment-1092</guid>
		<description>you need to submit the form and store it server side or pass it through with an AJAX request </description>
		<content:encoded><![CDATA[<p>you need to submit the form and store it server side or pass it through with an AJAX request</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gustavo</title>
		<link>http://www.onlineaspect.com/2007/06/08/auto-detect-a-time-zone-with-javascript/comment-page-2/#comment-1089</link>
		<dc:creator>Gustavo</dc:creator>
		<pubDate>Thu, 08 Jul 2010 01:12:51 +0000</pubDate>
		<guid isPermaLink="false">http://onlineaspect.com/2007/06/08/auto-detect-a-time-zone-with-javascript/#comment-1089</guid>
		<description>how i can grab the value from combobox option and put in a php session? </description>
		<content:encoded><![CDATA[<p>how i can grab the value from combobox option and put in a php session?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Pickett</title>
		<link>http://www.onlineaspect.com/2007/06/08/auto-detect-a-time-zone-with-javascript/comment-page-2/#comment-962</link>
		<dc:creator>Chris Pickett</dc:creator>
		<pubDate>Sun, 13 Jun 2010 17:39:39 +0000</pubDate>
		<guid isPermaLink="false">http://onlineaspect.com/2007/06/08/auto-detect-a-time-zone-with-javascript/#comment-962</guid>
		<description>For those looking for a php map to the select form here you go: 
 
$timezones = array ( 
 
&#039;-12:00,0&#039; =&gt; &#039;Etc/GMT-12&#039;, 
&#039;-11:00,0&#039; =&gt; &#039;Etc/GMT-11&#039;, 
&#039;-10:00,0&#039; =&gt; &#039;US/Hawaii&#039;, 
&#039;-09:00,1&#039; =&gt; &#039;US/Alaska&#039;, 
&#039;-08:00,1&#039; =&gt; &#039;US/Pacific&#039;, 
&#039;-07:00,0&#039; =&gt; &#039;US/Arizona&#039;, 
&#039;-07:00,1&#039; =&gt; &#039;US/Mountain&#039;, 
&#039;-06:00,0&#039; =&gt; &#039;Canada/Saskatchewan&#039;, 
&#039;-06:00,1&#039; =&gt; &#039;US/Central&#039;, 
&#039;-05:00,0&#039; =&gt; &#039;US/Indiana-Starke&#039;, 
&#039;-05:00,1&#039; =&gt; &#039;US/Eastern&#039;, 
&#039;-04:00,1&#039; =&gt; &#039;Canada/Atlantic&#039;, 
&#039;-04:00,0&#039; =&gt; &#039;America/Caracas&#039;, 
&#039;-03:30,1&#039; =&gt; &#039;Canada/Newfoundland&#039;, 
&#039;-03:00,1&#039; =&gt; &#039;America/Godthab&#039;, 
&#039;-03:00,0&#039; =&gt; &#039;America/Argentina/Buenos_Aires&#039;, 
&#039;-02:00,1&#039; =&gt; &#039;Atlantic/South_Georgia&#039;, 
&#039;-01:00,1&#039; =&gt; &#039;Atlantic/Azores&#039;, 
&#039;-01:00,0&#039; =&gt; &#039;Atlantic/Cape_Verde&#039;, 
&#039;00:00,0&#039; =&gt; &#039;Africa/Casablanca&#039;, 
&#039;00:00,1&#039; =&gt; &#039;Europe/Dublin&#039;, 
&#039;+01:00,1&#039; =&gt; &#039;Europe/Berlin&#039;, 
&#039;+01:00,0&#039; =&gt; &#039;Africa/Algiers&#039;, 
&#039;+02:00,1&#039; =&gt; &#039;Europe/Athens&#039;, 
&#039;+02:00,0&#039; =&gt; &#039;Africa/Harare&#039;, 
&#039;+03:00,1&#039; =&gt; &#039;Europe/Moscow&#039;, 
&#039;+03:00,0&#039; =&gt; &#039;Asia/Kuwait&#039;, 
&#039;+03:30,0&#039; =&gt; &#039;Asia/Tehran&#039;, 
&#039;+04:00,0&#039; =&gt; &#039;Asia/Muscat&#039;, 
&#039;+04:00,1&#039; =&gt; &#039;Asia/Baku&#039;, 
&#039;+04:30,0&#039; =&gt; &#039;Asia/Kabul&#039;, 
&#039;+05:00,1&#039; =&gt; &#039;Asia/Yekaterinburg&#039;, 
&#039;+05:00,0&#039; =&gt; &#039;Asia/Karachi&#039;, 
&#039;+05:30,0&#039; =&gt; &#039;Asia/Kolkata&#039;, 
&#039;+05:45,0&#039; =&gt; &#039;Asia/Katmandu&#039;, 
&#039;+06:00,0&#039; =&gt; &#039;Asia/Dhaka&#039;, 
&#039;+06:00,1&#039; =&gt; &#039;Asia/Almaty&#039;, 
&#039;+06:30,0&#039; =&gt; &#039;Asia/Rangoon&#039;, 
&#039;+07:00,1&#039; =&gt; &#039;Asia/Krasnoyarsk&#039;, 
&#039;+07:00,0&#039; =&gt; &#039;Asia/Bangkok&#039;, 
&#039;+08:00,0&#039; =&gt; &#039;Asia/Hong_Kong&#039;, 
&#039;+08:00,1&#039; =&gt; &#039;Australia/Perth&#039;, 
&#039;+09:00,1&#039; =&gt; &#039;Asia/Yakutsk&#039;, 
&#039;+09:00,0&#039; =&gt; &#039;Asia/Seoul&#039;, 
&#039;+09:30,0&#039; =&gt; &#039;Australia/Darwin&#039;, 
&#039;+09:30,1&#039; =&gt; &#039;Australia/Adelaide&#039;, 
&#039;+10:00,0&#039; =&gt; &#039;Australia/Brisbane&#039;, 
&#039;+10:00,1&#039; =&gt; &#039;Australia/Melbourne&#039;, 
&#039;+11:00,0&#039; =&gt; &#039;Asia/Magadan&#039;, 
&#039;+12:00,1&#039; =&gt; &#039;Pacific/Auckland&#039; 
&#039;+12:00,0&#039; =&gt; &#039;Pacific/Fiji&#039;, 
&#039;+13:00,0&#039; =&gt; &#039;Pacific/Tongatapu&#039;); 
 
Chris </description>
		<content:encoded><![CDATA[<p>For those looking for a php map to the select form here you go: </p>
<p>$timezones = array ( </p>
<p>&#039;-12:00,0&#039; =&gt; &#039;Etc/GMT-12&#039;,<br />
&#039;-11:00,0&#039; =&gt; &#039;Etc/GMT-11&#039;,<br />
&#039;-10:00,0&#039; =&gt; &#039;US/Hawaii&#039;,<br />
&#039;-09:00,1&#039; =&gt; &#039;US/Alaska&#039;,<br />
&#039;-08:00,1&#039; =&gt; &#039;US/Pacific&#039;,<br />
&#039;-07:00,0&#039; =&gt; &#039;US/Arizona&#039;,<br />
&#039;-07:00,1&#039; =&gt; &#039;US/Mountain&#039;,<br />
&#039;-06:00,0&#039; =&gt; &#039;Canada/Saskatchewan&#039;,<br />
&#039;-06:00,1&#039; =&gt; &#039;US/Central&#039;,<br />
&#039;-05:00,0&#039; =&gt; &#039;US/Indiana-Starke&#039;,<br />
&#039;-05:00,1&#039; =&gt; &#039;US/Eastern&#039;,<br />
&#039;-04:00,1&#039; =&gt; &#039;Canada/Atlantic&#039;,<br />
&#039;-04:00,0&#039; =&gt; &#039;America/Caracas&#039;,<br />
&#039;-03:30,1&#039; =&gt; &#039;Canada/Newfoundland&#039;,<br />
&#039;-03:00,1&#039; =&gt; &#039;America/Godthab&#039;,<br />
&#039;-03:00,0&#039; =&gt; &#039;America/Argentina/Buenos_Aires&#039;,<br />
&#039;-02:00,1&#039; =&gt; &#039;Atlantic/South_Georgia&#039;,<br />
&#039;-01:00,1&#039; =&gt; &#039;Atlantic/Azores&#039;,<br />
&#039;-01:00,0&#039; =&gt; &#039;Atlantic/Cape_Verde&#039;,<br />
&#039;00:00,0&#039; =&gt; &#039;Africa/Casablanca&#039;,<br />
&#039;00:00,1&#039; =&gt; &#039;Europe/Dublin&#039;,<br />
&#039;+01:00,1&#039; =&gt; &#039;Europe/Berlin&#039;,<br />
&#039;+01:00,0&#039; =&gt; &#039;Africa/Algiers&#039;,<br />
&#039;+02:00,1&#039; =&gt; &#039;Europe/Athens&#039;,<br />
&#039;+02:00,0&#039; =&gt; &#039;Africa/Harare&#039;,<br />
&#039;+03:00,1&#039; =&gt; &#039;Europe/Moscow&#039;,<br />
&#039;+03:00,0&#039; =&gt; &#039;Asia/Kuwait&#039;,<br />
&#039;+03:30,0&#039; =&gt; &#039;Asia/Tehran&#039;,<br />
&#039;+04:00,0&#039; =&gt; &#039;Asia/Muscat&#039;,<br />
&#039;+04:00,1&#039; =&gt; &#039;Asia/Baku&#039;,<br />
&#039;+04:30,0&#039; =&gt; &#039;Asia/Kabul&#039;,<br />
&#039;+05:00,1&#039; =&gt; &#039;Asia/Yekaterinburg&#039;,<br />
&#039;+05:00,0&#039; =&gt; &#039;Asia/Karachi&#039;,<br />
&#039;+05:30,0&#039; =&gt; &#039;Asia/Kolkata&#039;,<br />
&#039;+05:45,0&#039; =&gt; &#039;Asia/Katmandu&#039;,<br />
&#039;+06:00,0&#039; =&gt; &#039;Asia/Dhaka&#039;,<br />
&#039;+06:00,1&#039; =&gt; &#039;Asia/Almaty&#039;,<br />
&#039;+06:30,0&#039; =&gt; &#039;Asia/Rangoon&#039;,<br />
&#039;+07:00,1&#039; =&gt; &#039;Asia/Krasnoyarsk&#039;,<br />
&#039;+07:00,0&#039; =&gt; &#039;Asia/Bangkok&#039;,<br />
&#039;+08:00,0&#039; =&gt; &#039;Asia/Hong_Kong&#039;,<br />
&#039;+08:00,1&#039; =&gt; &#039;Australia/Perth&#039;,<br />
&#039;+09:00,1&#039; =&gt; &#039;Asia/Yakutsk&#039;,<br />
&#039;+09:00,0&#039; =&gt; &#039;Asia/Seoul&#039;,<br />
&#039;+09:30,0&#039; =&gt; &#039;Australia/Darwin&#039;,<br />
&#039;+09:30,1&#039; =&gt; &#039;Australia/Adelaide&#039;,<br />
&#039;+10:00,0&#039; =&gt; &#039;Australia/Brisbane&#039;,<br />
&#039;+10:00,1&#039; =&gt; &#039;Australia/Melbourne&#039;,<br />
&#039;+11:00,0&#039; =&gt; &#039;Asia/Magadan&#039;,<br />
&#039;+12:00,1&#039; =&gt; &#039;Pacific/Auckland&#039;<br />
&#039;+12:00,0&#039; =&gt; &#039;Pacific/Fiji&#039;,<br />
&#039;+13:00,0&#039; =&gt; &#039;Pacific/Tongatapu&#039;); </p>
<p>Chris</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: @thepoetweets</title>
		<link>http://www.onlineaspect.com/2007/06/08/auto-detect-a-time-zone-with-javascript/comment-page-2/#comment-959</link>
		<dc:creator>@thepoetweets</dc:creator>
		<pubDate>Wed, 02 Jun 2010 08:34:41 +0000</pubDate>
		<guid isPermaLink="false">http://onlineaspect.com/2007/06/08/auto-detect-a-time-zone-with-javascript/#comment-959</guid>
		<description>wow, that is so amazing! Thank You! :) </description>
		<content:encoded><![CDATA[<p>wow, that is so amazing! Thank You! <img src='http://www.onlineaspect.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jared</title>
		<link>http://www.onlineaspect.com/2007/06/08/auto-detect-a-time-zone-with-javascript/comment-page-2/#comment-958</link>
		<dc:creator>Jared</dc:creator>
		<pubDate>Wed, 02 Jun 2010 03:56:15 +0000</pubDate>
		<guid isPermaLink="false">http://onlineaspect.com/2007/06/08/auto-detect-a-time-zone-with-javascript/#comment-958</guid>
		<description>Thanks for the code, it was very useful! </description>
		<content:encoded><![CDATA[<p>Thanks for the code, it was very useful!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh Fraser</title>
		<link>http://www.onlineaspect.com/2007/06/08/auto-detect-a-time-zone-with-javascript/comment-page-2/#comment-945</link>
		<dc:creator>Josh Fraser</dc:creator>
		<pubDate>Wed, 26 May 2010 04:20:05 +0000</pubDate>
		<guid isPermaLink="false">http://onlineaspect.com/2007/06/08/auto-detect-a-time-zone-with-javascript/#comment-945</guid>
		<description>You&#039;re right.  They just both have the same GMT offset and both support DST -- BUT at opposite times of the year.  There really needs to be a follow up post to this because this method has so many flaws in it.  It&#039;s ideal for getting a true GMT offset and the DST flag, but that&#039;s about it.   </description>
		<content:encoded><![CDATA[<p>You&#039;re right.  They just both have the same GMT offset and both support DST &#8212; BUT at opposite times of the year.  There really needs to be a follow up post to this because this method has so many flaws in it.  It&#039;s ideal for getting a true GMT offset and the DST flag, but that&#039;s about it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mhano</title>
		<link>http://www.onlineaspect.com/2007/06/08/auto-detect-a-time-zone-with-javascript/comment-page-2/#comment-944</link>
		<dc:creator>Mhano</dc:creator>
		<pubDate>Wed, 26 May 2010 01:13:04 +0000</pubDate>
		<guid isPermaLink="false">http://onlineaspect.com/2007/06/08/auto-detect-a-time-zone-with-javascript/#comment-944</guid>
		<description>Surely Sydney and Vladivostok are not the same time zone?!?! </description>
		<content:encoded><![CDATA[<p>Surely Sydney and Vladivostok are not the same time zone?!?!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stakshi</title>
		<link>http://www.onlineaspect.com/2007/06/08/auto-detect-a-time-zone-with-javascript/comment-page-2/#comment-906</link>
		<dc:creator>Stakshi</dc:creator>
		<pubDate>Tue, 20 Apr 2010 09:46:58 +0000</pubDate>
		<guid isPermaLink="false">http://onlineaspect.com/2007/06/08/auto-detect-a-time-zone-with-javascript/#comment-906</guid>
		<description>is there way of chnaging time zone </description>
		<content:encoded><![CDATA[<p>is there way of chnaging time zone</p>
]]></content:encoded>
	</item>
</channel>
</rss>
