<!doctype html>
<html>
<head>
<title>DateTime Javascript Internationalization - RJM Programming - January, 2020</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script type='text/javascript'>
// https://www.ecma-international.org/ecma-402/1.0/
// https://topic.alibabacloud.com/a/javascript-in-the-face-of-international-programming-some-of-the-recommendations-_-basics_1_24_20121437.html
//

// var ctor = "Collator"; // or the others
// var instance = new Intl[ctor](locales, options);
// var dateFormatterAT = new Intl.DateTimeFormat("de-AT");
// var ourdate = new Date("2018-11-25");
// var ourformat = dateFormatterAT.format(ourdate); // "25.11.2018"

if (document.URL.indexOf('http:') == 0) { location.href='https:' + document.URL.split('http:')[1]; }

var contentHolder = null; //document.getElementById(containerid);
var transto="https://translate.google.com/translate?sl=en&js=n&prev=_t&hl=en&ie=UTF-8&layout=2&eotf=1&u=https%3A%2F%2Fwww.rjmprogramming.com.au%2FHTMLCSS%2Fintl_use.html&tl=";
var lastlng='en';

//var msperday = 60 * 60 * 24 * 1000;
//var timedatenow = new Date (msperday * (44 * 365 + 11 + 197) + (msperday / 6));
var lastastr='';
var d = new Date();
var timedatenow = new Date(d.getUTCFullYear(), d.getUTCMonth(), d.getUTCDate(), d.getUTCHours(), d.getUTCMinutes(), d.getUTCSeconds(), d.getUTCMilliseconds());
var options = {year: "2-digit", month: "2-digit", day: "2-digit", hour: "2-digit", minute: "2-digit", timeZoneName: "short"};
// alert(43);
var xamericandatetime = new Intl.DateTimeFormat("en-US",options).format;
// alert(45);
//alert(xamericandatetime(timedatenow)); //07/16/14, 5:00 PM PDT

var poptions = {year: "numeric", month: "long", day: "numeric", hour: "2-digit", minute: "2-digit", timeZoneName: "short", timeZone: "UTC"};
var portuguesetime = new Intl.DateTimeFormat (["pt-BR", "pt-PT"], poptions);

//De Julho de 2014 00:00 GMT
//alert(portuguesetime.format(timedatenow)); //07/16/14, 5:00 PM PDT

var swisslocales = ["de-CH", "fr-CH", "it-CH", "rm-CH"];
var soptions = {weekday: "short", hour: "numeric", minute: "numeric", timeZone: "UTC", timeZoneName: "short"};
var swisstime = new Intl.DateTimeFormat(swisslocales, soptions).format;

//alert(swisstime(timedatenow)); //Do. 00:00 GMT

var jpyearera = new Intl.DateTimeFormat ("ja-JP-u-ca-japanese", {year: "numeric", era: "long"});

//alert(jpyearera.format(timedatenow)); //Flat into 26

var toptions = {year: "numeric", month: "long", day: "numeric"};
var thaidate = new Intl.DateTimeFormat ("th-TH-u-nu-thai-ca-chinese", toptions);

//alert(thaidate.format(timedatenow)); // ?? 6??


//alert(new Intl.DateTimeFormat('en-AU').format(timedatenow));

var xdate = new Date(Date.UTC(2012, 11, 20, 3, 0, 0));
// Results below assume UTC timezone - your results may vary

//alert(new Intl.DateTimeFormat('en-AU').format(xdate));

//alert(new Intl.DateTimeFormat('en-US').format(xdate));
// expected output: "12/20/2012"

//alert(new Intl.DateTimeFormat('en-GB').format(xdate));
// expected output: "20/12/2012"

// Include a fallback language, in this case Indonesian
//alert(new Intl.DateTimeFormat(['ban', 'id']).format(xdate));
// expected output: "20/12/2012"

function doit(thisbut) {
var ij;
var numis=eval(thisbut.id.replace('b',''));
//var cline=document.getElementById('ejc' + numis).innerHTML.replace(/\<br\>/g, String.fromCharCode(10));
var divele = document.getElementById('ejc' + numis);
var cline=(divele.innerText || divele.contentWindow || divele.contentDocument).replace(/\;/g, ';' + String.fromCharCode(10)).replace(/\<br\>/g, String.fromCharCode(10));

if (cline.indexOf('new Intl.DateTimeFormat') == -1) {
alert('Sorry, does not compute.');
} else {
var reseval="";
var wasbut=thisbut.outerHTML;
if (cline.split('new Intl.DateTimeFormat')[1].indexOf('.format;') != -1) {
reseval=" document.getElementById('r" + numis + "').innerHTML=" + cline.split('new Intl.DateTimeFormat')[0].split(String.fromCharCode(10))[eval(-1 + cline.split('new Intl.DateTimeFormat')[0].split(String.fromCharCode(10)).length)].replace('var ','').replace('const ','').replace('=','').trim() + "(timedatenow);";
} else {
reseval=" document.getElementById('r" + numis + "').innerHTML=" + cline.split('new Intl.DateTimeFormat')[0].split(String.fromCharCode(10))[eval(-1 + cline.split('new Intl.DateTimeFormat')[0].split(String.fromCharCode(10)).length)].replace('var ','').replace('const ','').replace('=','').trim() + ".format(timedatenow);";
}
var codelines=cline.split(String.fromCharCode(10));
var evalline="";
for (ij=0; ij<codelines.length; ij++) {
if (ij == 0) {
evalline+=(" var d = new Date();");
evalline+=(" var timedatenow = new Date(d.getUTCFullYear(), d.getUTCMonth(), d.getUTCDate(), d.getUTCHours(), d.getUTCMinutes(), d.getUTCSeconds(), d.getUTCMilliseconds());");
}
if (codelines[ij].trim() != '') {
//alert(codelines[ij]);
evalline+=(" " + codelines[ij]);
}
}
//alert(reseval);
evalline+=(reseval);
//alert(evalline);
eval(evalline);
//alert(wasbut);
//document.getElementById('tdb' + numis).innerHTML=wasbut;
//alert(document.getElementById('ejc' + numis).innerHTML);
}
}

function loadresults() {
contentHolder = document.getElementById('langi');
var bs=document.getElementsByTagName("button");
for (var ibs=0; ibs<bs.length; ibs++) {
bs[ibs].click();
}
}

function athn() {
document.getElementById('xiframe').style.display='inline-block';
}

function precopytoclipboard() {
var astr=document.getElementById('langi').innerHTML;
if (astr.trim() != '' && lastastr != astr) { if (astr.replace('_','-').split('-')[0] != lastlng) { lastlng=astr.replace('_','-').split('-')[0]; document.getElementById('translate').style.display='inline-block'; document.getElementById('translate').title=transto+lastlng; } lastastr=astr; if (1 == 11) { SelectText(document.getElementById('langi')); copytoclipboard(astr); } else { copy_to_clipboard('langi'); } setTimeout(athn, 3000); }
setTimeout(precopytoclipboard, 1000);
}

function copytoclipboard(str) { // thanks to https://hackernoon.com/copying-text-to-clipboard-with-javascript-df4d4988697f
var el = document.createElement('textarea');
el.value = str;
el.setAttribute('readonly', '');
el.style.position = 'absolute';
el.style.left = '-9999px';
document.body.appendChild(el);
el.select();
document.execCommand('copy');
document.body.removeChild(el);
}


function copy_to_clipboard(containerid) {
if (1 == 11) {
// Create a new textarea element and give it id='temp_element'
var textarea = document.createElement('textarea');
textarea.id = 'temp_element';
// Optional step to make less noise on the page, if any!
textarea.style.height = 0;
// Now append it to your page somewhere, I chose <body>
document.body.appendChild(textarea);
// Give our textarea a value of whatever inside the div of id=containerid
var divele = document.getElementById(containerid);
textarea.value = (divele.innerText || divele.contentWindow || divele.contentDocument);
//document.getElementById('shuh').innerHTML=textarea.value + ' ... is in clipboard now';
// Now copy whatever inside the textarea to clipboard
var selector = document.querySelector('#temp_element');
selector.select();
document.execCommand('copy');
// Remove the textarea
document.body.removeChild(textarea);
}

//var contentHolder = document.getElementById(containerid);
// We will need a range object and a selection.
var range = document.createRange(),
selection = window.getSelection();

// Clear selection from any previous data.
selection.removeAllRanges();

// Make the range select the entire content of the contentHolder paragraph.
range.selectNodeContents(contentHolder);

// Add that range to the selection.
selection.addRange(range);

// Copy the selection to clipboard.
document.execCommand('copy');

// Clear selection if you want to.
selection.removeAllRanges();



}

function canstart(iois) {
setTimeout(precopytoclipboard, 1000);
}

function fixallthese(ovis) {
var found=false;
var tdbits=[];
var findthis='';
var oves=ovis.value.split(':');
if (oves.length > 1) {
var tds=document.getElementsByTagName("td");
for (var itds=0; itds<tds.length; itds++) {
if (('' + tds[itds].className) == 'edt') {
if (tds[itds].innerHTML.indexOf(oves[0].trim() + ':') != -1) {
found=true;
tdbits=tds[itds].innerHTML.split(oves[0].trim() + ':');
tds[itds].innerHTML=tds[itds].innerHTML.replace(oves[0].trim() + ':' + tdbits[1].split(',')[0].split('}')[0].split(' data-geo=')[0], ovis.value.trim());
} else if (tds[itds].innerHTML.indexOf('}') != -1) {
found=true;
tds[itds].innerHTML=tds[itds].innerHTML.replace('{', '{' + ovis.value.trim() + ', ');
}
}
}
}
if (found) {
var bs=document.getElementsByTagName("button");
for (var ibs=0; ibs<bs.length; ibs++) {
bs[ibs].click();
}
}
}

</script>
<style>
.edt { background-color: #f0f0f0; }
iframe { background-color: orange; }
</style>
</head>
<body onload="loadresults();">
<h1>DateTime (versus <a href='//www.rjmprogramming.com.au/HTMLCSS/intl_currency.html' title='Currency or Number Internationalization'>Currency or Number</a>) Javascript Internationalization</h1>
<h3 style=display:inline-block;>RJM Programming - January, 2020</h3><span> ... Language Code of ... </span> <iframe id=xiframe onload=canstart(this); style=display:none;height:50px; src='//www.rjmprogramming.com.au/PHP/speech_idea.php?onlysome=y'></iframe> <span> ... you may copy into clipboard ... </span> <div style=display:inline-block;width:60px;font-weight:bold; id=langi></div> <span id=shuh style=display:none;> ... is in clipboard now</span> <input id=translate title='https://translate.google.com/translate?sl=en&js=n&prev=_t&hl=en&ie=UTF-8&layout=2&eotf=1&u=%2F%2Fwww.rjmprogramming.com.au%2FHTMLCSS%2Fintl_use.html&tl=en' onclick="window.open(this.title,'_blank','top=100,left=100,width=800,height=800');" type=button style='display:none;background-color:yellow;' value=Translate></input>
<select onchange=fixallthese(this); id="sele" style="display:inline-block;" translate=no>
<option value='' translate=yes>Global change options below ...</option>
<option value=' weekday: "narrow" '> weekday: "narrow" </option>
<option value=' weekday: "short" '> weekday: "short" </option>
<option value=' weekday: "long" '> weekday: "long" </option>
<option value=' era: "narrow" '> era: "narrow" </option>
<option value=' era: "short" '> era: "short" </option>
<option value=' era: "long" '> era: "long" </option>
<option value=' year: "numeric" '> year: "numeric" </option>
<option value=' year: "2-digit" '> year: "2-digit" </option>
<option value=' month: "numeric" '> month: "numeric" </option>
<option value=' month: "2-digit" '> month: "2-digit" </option>
<option value=' month: "narrow" '> month: "narrow" </option>
<option value=' month: "short" '> month: "short" </option>
<option value=' month: "long" '> month: "long" </option>
<option value=' day: "numeric" '> day: "numeric" </option>
<option value=' day: "2-digit" '> day: "2-digit" </option>
<option value=' hour: "numeric" '> hour: "numeric" </option>
<option value=' hour: ""2-digit" '> hour: ""2-digit" </option>
<option value=' minute: "numeric" '> minute: "numeric" </option>
<option value=' minute: "2-digit" '> minute: "2-digit" </option>
<option value=' second: "numeric" '> second: "numeric" </option>
<option value=' second: "2-digit" '> second: "2-digit" </option>
<option value=' timeZoneName: "short" '> timeZoneName: "short" </option>
<option value=' timeZoneName: "long" '> timeZoneName: "long" </option>
<option value=' hour12: true '> hour12: true </option>
<option value=' hour12: false '> hour12: false </option>
<option value=' hourCycle: "h11" '> hourCycle: "h11" </option>
<option value=' hourCycle: "h12" '> hourCycle: "h12" </option>
<option value=' hourCycle: "h23" '> hourCycle: "h23" </option>
<option value=' hourCycle: "h24" '> hourCycle: "h24" </option>
<option value=' formatMatcher: "basic" '> formatMatcher: "basic" </option>
<option value=' formatMatcher: "best fit" '> formatMatcher: "best fit" </option>
<option value=' timeZone: "UTC" '> timeZone: "UTC" </option><option value=' timeZone: "Africa/Abidjan" ' data-geo="5.31666,-4.03334,GMT,CI,+0" '> timeZone: "Africa/Abidjan" </option><option value=' timeZone: "Africa/Accra" ' data-geo="5.55,-0.21667,GMT,GH,+0" '> timeZone: "Africa/Accra" </option><option value=' timeZone: "Africa/Addis_Ababa" ' data-geo="9.03333,38.7,EAT,ET,+3" '> timeZone: "Africa/Addis_Ababa" </option><option value=' timeZone: "Africa/Algiers" ' data-geo="36.78333,3.05,CET,DZ,+1" '> timeZone: "Africa/Algiers" </option><option value=' timeZone: "Africa/Asmara" ' data-geo="15.33333,38.88333,EAT,ER,+3" '> timeZone: "Africa/Asmara" </option><option value=' timeZone: "Africa/Bamako" ' data-geo="12.65,-8,GMT,ML,+0" '> timeZone: "Africa/Bamako" </option><option value=' timeZone: "Africa/Bangui" ' data-geo="4.36666,18.58333,WAT,CF,+1" '> timeZone: "Africa/Bangui" </option><option value=' timeZone: "Africa/Banjul" ' data-geo="13.46666,-16.65,GMT,GM,+0" '> timeZone: "Africa/Banjul" </option><option value=' timeZone: "Africa/Bissau" ' data-geo="11.85,-15.58334,GMT,GW,+0" '> timeZone: "Africa/Bissau" </option><option value=' timeZone: "Africa/Blantyre" ' data-geo="-15.78334,35,CAT,MW,+2" '> timeZone: "Africa/Blantyre" </option><option value=' timeZone: "Africa/Brazzaville" ' data-geo="-4.26667,15.28333,WAT,CG,+1" '> timeZone: "Africa/Brazzaville" </option><option value=' timeZone: "Africa/Bujumbura" ' data-geo="-3.38334,29.36666,CAT,BI,+2" '> timeZone: "Africa/Bujumbura" </option><option value=' timeZone: "Africa/Cairo" ' data-geo="30.05,31.25,EET,EG,+2" '> timeZone: "Africa/Cairo" </option><option value=' timeZone: "Africa/Casablanca" ' data-geo="33.65,-7.58334,+01,MA,+0" '> timeZone: "Africa/Casablanca" </option><option value=' timeZone: "Africa/Ceuta" ' data-geo="35.88333,-5.31667,CEST,ES,+1" '> timeZone: "Africa/Ceuta" </option><option value=' timeZone: "Africa/Conakry" ' data-geo="9.51666,-13.71667,GMT,GN,+0" '> timeZone: "Africa/Conakry" </option><option value=' timeZone: "Africa/Dakar" ' data-geo="14.66666,-17.43334,GMT,SN,+0" '> timeZone: "Africa/Dakar" </option><option value=' timeZone: "Africa/Dar_es_Salaam" ' data-geo="-6.8,39.28333,EAT,TZ,+3" '> timeZone: "Africa/Dar_es_Salaam" </option><option value=' timeZone: "Africa/Djibouti" ' data-geo="11.6,43.15,EAT,DJ,+3" '> timeZone: "Africa/Djibouti" </option><option value=' timeZone: "Africa/Douala" ' data-geo="4.05,9.7,WAT,CM,+1" '> timeZone: "Africa/Douala" </option><option value=' timeZone: "Africa/El_Aaiun" ' data-geo="27.15,-13.2,+01,EH,+0" '> timeZone: "Africa/El_Aaiun" </option><option value=' timeZone: "Africa/Freetown" ' data-geo="8.5,-13.25,GMT,SL,+0" '> timeZone: "Africa/Freetown" </option><option value=' timeZone: "Africa/Gaborone" ' data-geo="-24.65001,25.91666,CAT,BW,+2" '> timeZone: "Africa/Gaborone" </option><option value=' timeZone: "Africa/Harare" ' data-geo="-17.83334,31.05,CAT,ZW,+2" '> timeZone: "Africa/Harare" </option><option value=' timeZone: "Africa/Johannesburg" ' data-geo="-26.25,28,SAST,ZA,+2" '> timeZone: "Africa/Johannesburg" </option><option value=' timeZone: "Africa/Juba" ' data-geo="4.85,31.6,EAT,SS,+3" '> timeZone: "Africa/Juba" </option><option value=' timeZone: "Africa/Kampala" ' data-geo="0.31666,32.41666,EAT,UG,+3" '> timeZone: "Africa/Kampala" </option><option value=' timeZone: "Africa/Khartoum" ' data-geo="15.6,32.53333,CAT,SD,+3" '> timeZone: "Africa/Khartoum" </option><option value=' timeZone: "Africa/Kigali" ' data-geo="-1.95,30.06666,CAT,RW,+2" '> timeZone: "Africa/Kigali" </option><option value=' timeZone: "Africa/Kinshasa" ' data-geo="-4.3,15.3,WAT,CD,+1" '> timeZone: "Africa/Kinshasa" </option><option value=' timeZone: "Africa/Lagos" ' data-geo="6.45,3.4,WAT,NG,+1" '> timeZone: "Africa/Lagos" </option><option value=' timeZone: "Africa/Libreville" ' data-geo="0.38333,9.45,WAT,GA,+1" '> timeZone: "Africa/Libreville" </option><option value=' timeZone: "Africa/Lome" ' data-geo="6.13333,1.21666,GMT,TG,+0" '> timeZone: "Africa/Lome" </option><option value=' timeZone: "Africa/Luanda" ' data-geo="-8.8,13.23333,WAT,AO,+1" '> timeZone: "Africa/Luanda" </option><option value=' timeZone: "Africa/Lubumbashi" ' data-geo="-11.66667,27.46666,CAT,CD,+2" '> timeZone: "Africa/Lubumbashi" </option><option value=' timeZone: "Africa/Lusaka" ' data-geo="-15.41667,28.28333,CAT,ZM,+2" '> timeZone: "Africa/Lusaka" </option><option value=' timeZone: "Africa/Malabo" ' data-geo="3.75,8.78333,WAT,GQ,+1" '> timeZone: "Africa/Malabo" </option><option value=' timeZone: "Africa/Maputo" ' data-geo="-25.96667,32.58333,CAT,MZ,+2" '> timeZone: "Africa/Maputo" </option><option value=' timeZone: "Africa/Maseru" ' data-geo="-29.46667,27.5,SAST,LS,+2" '> timeZone: "Africa/Maseru" </option><option value=' timeZone: "Africa/Mbabane" ' data-geo="-26.3,31.1,SAST,SZ,+2" '> timeZone: "Africa/Mbabane" </option><option value=' timeZone: "Africa/Mogadishu" ' data-geo="2.06666,45.36666,EAT,SO,+3" '> timeZone: "Africa/Mogadishu" </option><option value=' timeZone: "Africa/Monrovia" ' data-geo="6.3,-10.78334,GMT,LR,+0" '> timeZone: "Africa/Monrovia" </option><option value=' timeZone: "Africa/Nairobi" ' data-geo="-1.28334,36.81666,EAT,KE,+3" '> timeZone: "Africa/Nairobi" </option><option value=' timeZone: "Africa/Ndjamena" ' data-geo="12.11666,15.05,WAT,TD,+1" '> timeZone: "Africa/Ndjamena" </option><option value=' timeZone: "Africa/Niamey" ' data-geo="13.51666,2.11666,WAT,NE,+1" '> timeZone: "Africa/Niamey" </option><option value=' timeZone: "Africa/Nouakchott" ' data-geo="18.1,-15.95,GMT,MR,+0" '> timeZone: "Africa/Nouakchott" </option><option value=' timeZone: "Africa/Ouagadougou" ' data-geo="12.36666,-1.51667,GMT,BF,+0" '> timeZone: "Africa/Ouagadougou" </option><option value=' timeZone: "Africa/Porto-Novo" ' data-geo="6.48333,2.61666,WAT,BJ,+1" '> timeZone: "Africa/Porto-Novo" </option><option value=' timeZone: "Africa/Sao_Tome" ' data-geo="0.33333,6.73333,GMT,ST,+0" '> timeZone: "Africa/Sao_Tome" </option><option value=' timeZone: "Africa/Tripoli" ' data-geo="32.9,13.18333,EET,LY,+2" '> timeZone: "Africa/Tripoli" </option><option value=' timeZone: "Africa/Tunis" ' data-geo="36.8,10.18333,CET,TN,+1" '> timeZone: "Africa/Tunis" </option><option value=' timeZone: "Africa/Windhoek" ' data-geo="-22.56667,17.1,CAT,NA,+2" '> timeZone: "Africa/Windhoek" </option><option value=' timeZone: "America/Adak" ' data-geo="51.88,-176.65806,HDT,US,-10" '> timeZone: "America/Adak" </option><option value=' timeZone: "America/Anchorage" ' data-geo="61.21805,-149.90028,AKDT,US,-9" '> timeZone: "America/Anchorage" </option><option value=' timeZone: "America/Anguilla" ' data-geo="18.2,-63.06667,AST,AI,-4" '> timeZone: "America/Anguilla" </option><option value=' timeZone: "America/Antigua" ' data-geo="17.05,-61.8,AST,AG,-4" '> timeZone: "America/Antigua" </option><option value=' timeZone: "America/Araguaina" ' data-geo="-7.2,-48.2,-03,BR,-3" '> timeZone: "America/Araguaina" </option><option value=' timeZone: "America/Argentina/Buenos_Aires" ' data-geo="-34.6,-58.45,-03,AR,-3" '> timeZone: "America/Argentina/Buenos_Aires" </option><option value=' timeZone: "America/Argentina/Catamarca" ' data-geo="-28.46667,-65.78334,-03,AR,-3" '> timeZone: "America/Argentina/Catamarca" </option><option value=' timeZone: "America/Argentina/Cordoba" ' data-geo="-31.4,-64.18334,-03,AR,-3" '> timeZone: "America/Argentina/Cordoba" </option><option value=' timeZone: "America/Argentina/Jujuy" ' data-geo="-24.18334,-65.3,-03,AR,-3" '> timeZone: "America/Argentina/Jujuy" </option><option value=' timeZone: "America/Argentina/La_Rioja" ' data-geo="-29.43334,-66.85,-03,AR,-3" '> timeZone: "America/Argentina/La_Rioja" </option><option value=' timeZone: "America/Argentina/Mendoza" ' data-geo="-32.88334,-68.81667,-03,AR,-3" '> timeZone: "America/Argentina/Mendoza" </option><option value=' timeZone: "America/Argentina/Rio_Gallegos" ' data-geo="-51.63334,-69.21667,-03,AR,-3" '> timeZone: "America/Argentina/Rio_Gallegos" </option><option value=' timeZone: "America/Argentina/Salta" ' data-geo="-24.78334,-65.41667,-03,AR,-3" '> timeZone: "America/Argentina/Salta" </option><option value=' timeZone: "America/Argentina/San_Juan" ' data-geo="-31.53334,-68.51667,-03,AR,-3" '> timeZone: "America/Argentina/San_Juan" </option><option value=' timeZone: "America/Argentina/San_Luis" ' data-geo="-33.31667,-66.35,-03,AR,-3" '> timeZone: "America/Argentina/San_Luis" </option><option value=' timeZone: "America/Argentina/Tucuman" ' data-geo="-26.81667,-65.21667,-03,AR,-3" '> timeZone: "America/Argentina/Tucuman" </option><option value=' timeZone: "America/Argentina/Ushuaia" ' data-geo="-54.8,-68.3,-03,AR,-3" '> timeZone: "America/Argentina/Ushuaia" </option><option value=' timeZone: "America/Aruba" ' data-geo="12.5,-69.96667,AST,AW,-4" '> timeZone: "America/Aruba" </option><option value=' timeZone: "America/Asuncion" ' data-geo="-25.26667,-57.66667,-04,PY,-3" '> timeZone: "America/Asuncion" </option><option value=' timeZone: "America/Atikokan" ' data-geo="48.75861,-91.62167,EST,CA,-5" '> timeZone: "America/Atikokan" </option><option value=' timeZone: "America/Bahia" ' data-geo="-12.98334,-38.51667,-03,BR,-3" '> timeZone: "America/Bahia" </option><option value=' timeZone: "America/Bahia_Banderas" ' data-geo="20.8,-105.25,CDT,MX,-6" '> timeZone: "America/Bahia_Banderas" </option><option value=' timeZone: "America/Barbados" ' data-geo="13.1,-59.61667,AST,BB,-4" '> timeZone: "America/Barbados" </option><option value=' timeZone: "America/Belem" ' data-geo="-1.45,-48.48334,-03,BR,-3" '> timeZone: "America/Belem" </option><option value=' timeZone: "America/Belize" ' data-geo="17.5,-88.2,CST,BZ,-6" '> timeZone: "America/Belize" </option><option value=' timeZone: "America/Blanc-Sablon" ' data-geo="51.41666,-57.11667,AST,CA,-4" '> timeZone: "America/Blanc-Sablon" </option><option value=' timeZone: "America/Boa_Vista" ' data-geo="2.81666,-60.66667,-04,BR,-4" '> timeZone: "America/Boa_Vista" </option><option value=' timeZone: "America/Bogota" ' data-geo="4.6,-74.08334,-05,CO,-5" '> timeZone: "America/Bogota" </option><option value=' timeZone: "America/Boise" ' data-geo="43.61361,-116.2025,MDT,US,-7" '> timeZone: "America/Boise" </option><option value=' timeZone: "America/Cambridge_Bay" ' data-geo="69.11388,-105.05278,MDT,CA,-7" '> timeZone: "America/Cambridge_Bay" </option><option value=' timeZone: "America/Campo_Grande" ' data-geo="-20.45,-54.61667,-04,BR,-3" '> timeZone: "America/Campo_Grande" </option><option value=' timeZone: "America/Cancun" ' data-geo="21.08333,-86.76667,EST,MX,-5" '> timeZone: "America/Cancun" </option><option value=' timeZone: "America/Caracas" ' data-geo="10.5,-66.93334,-04,VE,-4.5" '> timeZone: "America/Caracas" </option><option value=' timeZone: "America/Cayenne" ' data-geo="4.93333,-52.33334,-03,GF,-3" '> timeZone: "America/Cayenne" </option><option value=' timeZone: "America/Cayman" ' data-geo="19.3,-81.38334,EST,KY,-5" '> timeZone: "America/Cayman" </option><option value=' timeZone: "America/Chicago" ' data-geo="41.85,-87.65,CDT,US,-6" '> timeZone: "America/Chicago" </option><option value=' timeZone: "America/Chihuahua" ' data-geo="28.63333,-106.08334,MDT,MX,-7" '> timeZone: "America/Chihuahua" </option><option value=' timeZone: "America/Costa_Rica" ' data-geo="9.93333,-84.08334,CST,CR,-6" '> timeZone: "America/Costa_Rica" </option><option value=' timeZone: "America/Creston" ' data-geo="49.1,-116.51667,MST,CA,-7" '> timeZone: "America/Creston" </option><option value=' timeZone: "America/Cuiaba" ' data-geo="-15.58334,-56.08334,-04,BR,-3" '> timeZone: "America/Cuiaba" </option><option value=' timeZone: "America/Curacao" ' data-geo="12.18333,-69,AST,CW,-4" '> timeZone: "America/Curacao" </option><option value=' timeZone: "America/Danmarkshavn" ' data-geo="76.76666,-18.66667,GMT,GL,+0" '> timeZone: "America/Danmarkshavn" </option><option value=' timeZone: "America/Dawson" ' data-geo="64.06666,-139.41667,PDT,CA,-8" '> timeZone: "America/Dawson" </option><option value=' timeZone: "America/Dawson_Creek" ' data-geo="59.76666,-120.23334,MST,CA,-7" '> timeZone: "America/Dawson_Creek" </option><option value=' timeZone: "America/Denver" ' data-geo="39.73916,-104.98417,MDT,US,-7" '> timeZone: "America/Denver" </option><option value=' timeZone: "America/Detroit" ' data-geo="42.33138,-83.04584,EDT,US,-5" '> timeZone: "America/Detroit" </option><option value=' timeZone: "America/Dominica" ' data-geo="15.3,-61.4,AST,DM,-4" '> timeZone: "America/Dominica" </option><option value=' timeZone: "America/Edmonton" ' data-geo="53.55,-113.46667,MDT,CA,-7" '> timeZone: "America/Edmonton" </option><option value=' timeZone: "America/Eirunepe" ' data-geo="-6.66667,-69.86667,-05,BR,-5" '> timeZone: "America/Eirunepe" </option><option value=' timeZone: "America/El_Salvador" ' data-geo="13.7,-89.2,CST,SV,-6" '> timeZone: "America/El_Salvador" </option><option value=' timeZone: "America/Fortaleza" ' data-geo="-3.71667,-38.5,-03,BR,-3" '> timeZone: "America/Fortaleza" </option><option value=' timeZone: "America/Glace_Bay" ' data-geo="46.19999,-59.95,ADT,CA,-4" '> timeZone: "America/Glace_Bay" </option><option value=' timeZone: "America/Godthab" ' data-geo="64.18333,-51.73334,-02,GL,-3" '> timeZone: "America/Godthab" </option><option value=' timeZone: "America/Goose_Bay" ' data-geo="53.33333,-60.41667,ADT,CA,-4" '> timeZone: "America/Goose_Bay" </option><option value=' timeZone: "America/Grand_Turk" ' data-geo="21.46666,-71.13334,EDT,TC,-4" '> timeZone: "America/Grand_Turk" </option><option value=' timeZone: "America/Grenada" ' data-geo="12.05,-61.75,AST,GD,-4" '> timeZone: "America/Grenada" </option><option value=' timeZone: "America/Guadeloupe" ' data-geo="16.23333,-61.53334,AST,GP,-4" '> timeZone: "America/Guadeloupe" </option><option value=' timeZone: "America/Guatemala" ' data-geo="14.63333,-90.51667,CST,GT,-6" '> timeZone: "America/Guatemala" </option><option value=' timeZone: "America/Guayaquil" ' data-geo="-2.16667,-79.83334,-05,EC,-5" '> timeZone: "America/Guayaquil" </option><option value=' timeZone: "America/Guyana" ' data-geo="6.8,-58.16667,-04,GY,-4" '> timeZone: "America/Guyana" </option><option value=' timeZone: "America/Halifax" ' data-geo="44.65,-63.6,ADT,CA,-4" '> timeZone: "America/Halifax" </option><option value=' timeZone: "America/Havana" ' data-geo="23.13333,-82.36667,CDT,CU,-5" '> timeZone: "America/Havana" </option><option value=' timeZone: "America/Hermosillo" ' data-geo="29.06666,-110.96667,MST,MX,-7" '> timeZone: "America/Hermosillo" </option><option value=' timeZone: "America/Indiana/Indianapolis" ' data-geo="39.76833,-86.15806,EDT,US,-5" '> timeZone: "America/Indiana/Indianapolis" </option><option value=' timeZone: "America/Indiana/Knox" ' data-geo="41.29583,-86.625,CDT,US,-6" '> timeZone: "America/Indiana/Knox" </option><option value=' timeZone: "America/Indiana/Marengo" ' data-geo="38.37555,-86.34473,EDT,US,-5" '> timeZone: "America/Indiana/Marengo" </option><option value=' timeZone: "America/Indiana/Petersburg" ' data-geo="38.49194,-87.27862,EDT,US,-5" '> timeZone: "America/Indiana/Petersburg" </option><option value=' timeZone: "America/Indiana/Tell_City" ' data-geo="37.95305,-86.76139,CDT,US,-6" '> timeZone: "America/Indiana/Tell_City" </option><option value=' timeZone: "America/Indiana/Vevay" ' data-geo="38.74777,-85.06723,EDT,US,-5" '> timeZone: "America/Indiana/Vevay" </option><option value=' timeZone: "America/Indiana/Vincennes" ' data-geo="38.67722,-87.52862,EDT,US,-5" '> timeZone: "America/Indiana/Vincennes" </option><option value=' timeZone: "America/Indiana/Winamac" ' data-geo="41.05138,-86.60306,EDT,US,-5" '> timeZone: "America/Indiana/Winamac" </option><option value=' timeZone: "America/Inuvik" ' data-geo="68.34972,-133.71667,MDT,CA,-7" '> timeZone: "America/Inuvik" </option><option value=' timeZone: "America/Iqaluit" ' data-geo="63.73333,-68.46667,EDT,CA,-5" '> timeZone: "America/Iqaluit" </option><option value=' timeZone: "America/Jamaica" ' data-geo="18,-76.8,EST,JM,-5" '> timeZone: "America/Jamaica" </option><option value=' timeZone: "America/Juneau" ' data-geo="58.30194,-134.41973,AKDT,US,-9" '> timeZone: "America/Juneau" </option><option value=' timeZone: "America/Kentucky/Louisville" ' data-geo="38.25416,-85.75945,EDT,US,-5" '> timeZone: "America/Kentucky/Louisville" </option><option value=' timeZone: "America/Kentucky/Monticello" ' data-geo="36.82972,-84.84917,EDT,US,-5" '> timeZone: "America/Kentucky/Monticello" </option><option value=' timeZone: "America/Kralendijk" ' data-geo="12.15083,-68.27667,AST,BQ,-4" '> timeZone: "America/Kralendijk" </option><option value=' timeZone: "America/La_Paz" ' data-geo="-16.5,-68.15,-04,BO,-4" '> timeZone: "America/La_Paz" </option><option value=' timeZone: "America/Lima" ' data-geo="-12.05,-77.05,-05,PE,-5" '> timeZone: "America/Lima" </option><option value=' timeZone: "America/Los_Angeles" ' data-geo="34.05222,-118.24278,PDT,US,-8" '> timeZone: "America/Los_Angeles" </option><option value=' timeZone: "America/Lower_Princes" ' data-geo="18.05138,-63.04723,AST,SX,-4" '> timeZone: "America/Lower_Princes" </option><option value=' timeZone: "America/Maceio" ' data-geo="-9.66667,-35.71667,-03,BR,-3" '> timeZone: "America/Maceio" </option><option value=' timeZone: "America/Managua" ' data-geo="12.15,-86.28334,CST,NI,-6" '> timeZone: "America/Managua" </option><option value=' timeZone: "America/Manaus" ' data-geo="-3.13334,-60.01667,-04,BR,-4" '> timeZone: "America/Manaus" </option><option value=' timeZone: "America/Marigot" ' data-geo="18.06666,-63.08334,AST,MF,-4" '> timeZone: "America/Marigot" </option><option value=' timeZone: "America/Martinique" ' data-geo="14.6,-61.08334,AST,MQ,-4" '> timeZone: "America/Martinique" </option><option value=' timeZone: "America/Matamoros" ' data-geo="25.83333,-97.5,CDT,MX,-6" '> timeZone: "America/Matamoros" </option><option value=' timeZone: "America/Mazatlan" ' data-geo="23.21666,-106.41667,MDT,MX,-7" '> timeZone: "America/Mazatlan" </option><option value=' timeZone: "America/Menominee" ' data-geo="45.10777,-87.61417,CDT,US,-6" '> timeZone: "America/Menominee" </option><option value=' timeZone: "America/Merida" ' data-geo="20.96666,-89.61667,CDT,MX,-6" '> timeZone: "America/Merida" </option><option value=' timeZone: "America/Metlakatla" ' data-geo="55.12694,-131.57639,AKDT,US,-8" '> timeZone: "America/Metlakatla" </option><option value=' timeZone: "America/Mexico_City" ' data-geo="19.4,-99.15001,CDT,MX,-6" '> timeZone: "America/Mexico_City" </option><option value=' timeZone: "America/Miquelon" ' data-geo="47.05,-56.33334,-02,PM,-3" '> timeZone: "America/Miquelon" </option><option value=' timeZone: "America/Moncton" ' data-geo="46.1,-64.78334,ADT,CA,-4" '> timeZone: "America/Moncton" </option><option value=' timeZone: "America/Monterrey" ' data-geo="25.66666,-100.31667,CDT,MX,-6" '> timeZone: "America/Monterrey" </option><option value=' timeZone: "America/Montevideo" ' data-geo="-34.88334,-56.18334,-03,UY,-2" '> timeZone: "America/Montevideo" </option><option value=' timeZone: "America/Montreal" ' data-geo="45.51666,-73.56667,UTC,??,-5" '> timeZone: "America/Montreal" </option><option value=' timeZone: "America/Montserrat" ' data-geo="16.71666,-62.21667,AST,MS,-4" '> timeZone: "America/Montserrat" </option><option value=' timeZone: "America/Nassau" ' data-geo="25.08333,-77.35,EDT,BS,-5" '> timeZone: "America/Nassau" </option><option value=' timeZone: "America/New_York" ' data-geo="40.71416,-74.00639,EDT,US,-5" '> timeZone: "America/New_York" </option><option value=' timeZone: "America/Nipigon" ' data-geo="49.01666,-88.26667,EDT,CA,-5" '> timeZone: "America/Nipigon" </option><option value=' timeZone: "America/Nome" ' data-geo="64.50111,-165.40639,AKDT,US,-9" '> timeZone: "America/Nome" </option><option value=' timeZone: "America/Noronha" ' data-geo="-3.85,-32.41667,-02,BR,-2" '> timeZone: "America/Noronha" </option><option value=' timeZone: "America/North_Dakota/Beulah" ' data-geo="47.26416,-101.77778,CDT,US,-6" '> timeZone: "America/North_Dakota/Beulah" </option><option value=' timeZone: "America/North_Dakota/Center" ' data-geo="47.11638,-101.29917,CDT,US,-6" '> timeZone: "America/North_Dakota/Center" </option><option value=' timeZone: "America/North_Dakota/New_Salem" ' data-geo="46.845,-101.41084,CDT,US,-6" '> timeZone: "America/North_Dakota/New_Salem" </option><option value=' timeZone: "America/Ojinaga" ' data-geo="29.56666,-104.41667,MDT,MX,-7" '> timeZone: "America/Ojinaga" </option><option value=' timeZone: "America/Panama" ' data-geo="8.96666,-79.53334,EST,PA,-5" '> timeZone: "America/Panama" </option><option value=' timeZone: "America/Pangnirtung" ' data-geo="66.13333,-65.73334,EDT,CA,-5" '> timeZone: "America/Pangnirtung" </option><option value=' timeZone: "America/Paramaribo" ' data-geo="5.83333,-55.16667,-03,SR,-3" '> timeZone: "America/Paramaribo" </option><option value=' timeZone: "America/Phoenix" ' data-geo="33.44833,-112.07334,MST,US,-7" '> timeZone: "America/Phoenix" </option><option value=' timeZone: "America/Port-au-Prince" ' data-geo="18.53333,-72.33334,EDT,HT,-5" '> timeZone: "America/Port-au-Prince" </option><option value=' timeZone: "America/Port_of_Spain" ' data-geo="10.65,-61.51667,AST,TT,-4" '> timeZone: "America/Port_of_Spain" </option><option value=' timeZone: "America/Porto_Velho" ' data-geo="-8.76667,-63.9,-04,BR,-4" '> timeZone: "America/Porto_Velho" </option><option value=' timeZone: "America/Puerto_Rico" ' data-geo="18.46833,-66.10612,AST,PR,-4" '> timeZone: "America/Puerto_Rico" </option><option value=' timeZone: "America/Rainy_River" ' data-geo="48.71666,-94.56667,CDT,CA,-6" '> timeZone: "America/Rainy_River" </option><option value=' timeZone: "America/Rankin_Inlet" ' data-geo="62.81666,-92.08306,CDT,CA,-6" '> timeZone: "America/Rankin_Inlet" </option><option value=' timeZone: "America/Recife" ' data-geo="-8.05,-34.9,-03,BR,-3" '> timeZone: "America/Recife" </option><option value=' timeZone: "America/Regina" ' data-geo="50.4,-104.65001,CST,CA,-6" '> timeZone: "America/Regina" </option><option value=' timeZone: "America/Resolute" ' data-geo="74.69555,-94.82917,CDT,CA,-6" '> timeZone: "America/Resolute" </option><option value=' timeZone: "America/Rio_Branco" ' data-geo="-9.96667,-67.8,-05,BR,-5" '> timeZone: "America/Rio_Branco" </option><option value=' timeZone: "America/Santa_Isabel" ' data-geo="30.3,-114.86667,UTC,MX,-8" '> timeZone: "America/Santa_Isabel" </option><option value=' timeZone: "America/Santarem" ' data-geo="-2.43334,-54.86667,-03,BR,-3" '> timeZone: "America/Santarem" </option><option value=' timeZone: "America/Santiago" ' data-geo="-33.45,-70.66667,-03,CL,-3" '> timeZone: "America/Santiago" </option><option value=' timeZone: "America/Santo_Domingo" ' data-geo="18.46666,-69.9,AST,DO,-4" '> timeZone: "America/Santo_Domingo" </option><option value=' timeZone: "America/Sao_Paulo" ' data-geo="-23.53334,-46.61667,-03,BR,-2" '> timeZone: "America/Sao_Paulo" </option><option value=' timeZone: "America/Scoresbysund" ' data-geo="70.48333,-21.96667,+00,GL,-1" '> timeZone: "America/Scoresbysund" </option><option value=' timeZone: "America/Shiprock" ' data-geo="36.78555,-108.68639,UTC,??,-7" '> timeZone: "America/Shiprock" </option><option value=' timeZone: "America/Sitka" ' data-geo="57.17638,-135.30195,AKDT,US,-9" '> timeZone: "America/Sitka" </option><option value=' timeZone: "America/St_Barthelemy" ' data-geo="17.88333,-62.85,AST,BL,-4" '> timeZone: "America/St_Barthelemy" </option><option value=' timeZone: "America/St_Johns" ' data-geo="47.56666,-52.71667,NDT,CA,-3.5" '> timeZone: "America/St_Johns" </option><option value=' timeZone: "America/St_Kitts" ' data-geo="17.3,-62.71667,AST,KN,-4" '> timeZone: "America/St_Kitts" </option><option value=' timeZone: "America/St_Lucia" ' data-geo="14.01666,-61,AST,LC,-4" '> timeZone: "America/St_Lucia" </option><option value=' timeZone: "America/St_Thomas" ' data-geo="18.35,-64.93334,AST,VI,-4" '> timeZone: "America/St_Thomas" </option><option value=' timeZone: "America/St_Vincent" ' data-geo="13.15,-61.23334,AST,VC,-4" '> timeZone: "America/St_Vincent" </option><option value=' timeZone: "America/Swift_Current" ' data-geo="50.28333,-107.83334,CST,CA,-6" '> timeZone: "America/Swift_Current" </option><option value=' timeZone: "America/Tegucigalpa" ' data-geo="14.1,-87.21667,CST,HN,-6" '> timeZone: "America/Tegucigalpa" </option><option value=' timeZone: "America/Thule" ' data-geo="76.56666,-68.78334,ADT,GL,-4" '> timeZone: "America/Thule" </option><option value=' timeZone: "America/Thunder_Bay" ' data-geo="48.38333,-89.25,EDT,CA,-5" '> timeZone: "America/Thunder_Bay" </option><option value=' timeZone: "America/Tijuana" ' data-geo="32.53333,-117.01667,PDT,MX,-8" '> timeZone: "America/Tijuana" </option><option value=' timeZone: "America/Toronto" ' data-geo="43.65,-79.38334,EDT,CA,-5" '> timeZone: "America/Toronto" </option><option value=' timeZone: "America/Tortola" ' data-geo="18.45,-64.61667,AST,VG,-4" '> timeZone: "America/Tortola" </option><option value=' timeZone: "America/Vancouver" ' data-geo="49.26666,-123.11667,PDT,CA,-8" '> timeZone: "America/Vancouver" </option><option value=' timeZone: "America/Whitehorse" ' data-geo="60.71666,-135.05001,PDT,CA,-8" '> timeZone: "America/Whitehorse" </option><option value=' timeZone: "America/Winnipeg" ' data-geo="49.88333,-97.15001,CDT,CA,-6" '> timeZone: "America/Winnipeg" </option><option value=' timeZone: "America/Yakutat" ' data-geo="59.54694,-139.72723,AKDT,US,-9" '> timeZone: "America/Yakutat" </option><option value=' timeZone: "America/Yellowknife" ' data-geo="62.44999,-114.35,MDT,CA,-7" '> timeZone: "America/Yellowknife" </option><option value=' timeZone: "Antarctica/Casey" ' data-geo="-66.28334,110.51666,+08,AQ,+8" '> timeZone: "Antarctica/Casey" </option><option value=' timeZone: "Antarctica/Davis" ' data-geo="-68.58334,77.96666,+07,AQ,+7" '> timeZone: "Antarctica/Davis" </option><option value=' timeZone: "Antarctica/DumontDUrville" ' data-geo="-66.66667,140.01666,+10,AQ,+10" '> timeZone: "Antarctica/DumontDUrville" </option><option value=' timeZone: "Antarctica/Macquarie" ' data-geo="-54.5,158.95,+11,AU,+11" '> timeZone: "Antarctica/Macquarie" </option><option value=' timeZone: "Antarctica/Mawson" ' data-geo="-67.6,62.88333,+05,AQ,+5" '> timeZone: "Antarctica/Mawson" </option><option value=' timeZone: "Antarctica/McMurdo" ' data-geo="-77.83334,166.6,NZST,AQ,+13" '> timeZone: "Antarctica/McMurdo" </option><option value=' timeZone: "Antarctica/Palmer" ' data-geo="-64.8,-64.1,-03,AQ,-3" '> timeZone: "Antarctica/Palmer" </option><option value=' timeZone: "Antarctica/Rothera" ' data-geo="-67.56667,-68.13334,-03,AQ,-3" '> timeZone: "Antarctica/Rothera" </option><option value=' timeZone: "Antarctica/South_Pole" ' data-geo="-90,0,UTC,??,+13" '> timeZone: "Antarctica/South_Pole" </option><option value=' timeZone: "Antarctica/Syowa" ' data-geo="-69.00612,39.59,+03,AQ,+3" '> timeZone: "Antarctica/Syowa" </option><option value=' timeZone: "Antarctica/Vostok" ' data-geo="-78.40001,106.89999,+06,AQ,+6" '> timeZone: "Antarctica/Vostok" </option><option value=' timeZone: "Arctic/Longyearbyen" ' data-geo="78,16,CEST,SJ,+1" '> timeZone: "Arctic/Longyearbyen" </option><option value=' timeZone: "Asia/Aden" ' data-geo="12.75,45.2,+03,YE,+3" '> timeZone: "Asia/Aden" </option><option value=' timeZone: "Asia/Almaty" ' data-geo="43.25,76.95,+06,KZ,+6" '> timeZone: "Asia/Almaty" </option><option value=' timeZone: "Asia/Amman" ' data-geo="31.95,35.93333,EEST,JO,+2" '> timeZone: "Asia/Amman" </option><option value=' timeZone: "Asia/Anadyr" ' data-geo="64.75,177.48333,+12,RU,+12" '> timeZone: "Asia/Anadyr" </option><option value=' timeZone: "Asia/Aqtau" ' data-geo="44.51666,50.26666,+05,KZ,+5" '> timeZone: "Asia/Aqtau" </option><option value=' timeZone: "Asia/Aqtobe" ' data-geo="50.28333,57.16666,+05,KZ,+5" '> timeZone: "Asia/Aqtobe" </option><option value=' timeZone: "Asia/Ashgabat" ' data-geo="37.95,58.38333,+05,TM,+5" '> timeZone: "Asia/Ashgabat" </option><option value=' timeZone: "Asia/Baghdad" ' data-geo="33.35,44.41666,+03,IQ,+3" '> timeZone: "Asia/Baghdad" </option><option value=' timeZone: "Asia/Bahrain" ' data-geo="26.38333,50.58333,+03,BH,+3" '> timeZone: "Asia/Bahrain" </option><option value=' timeZone: "Asia/Baku" ' data-geo="40.38333,49.85,+04,AZ,+4" '> timeZone: "Asia/Baku" </option><option value=' timeZone: "Asia/Bangkok" ' data-geo="13.75,100.51666,+07,TH,+7" '> timeZone: "Asia/Bangkok" </option><option value=' timeZone: "Asia/Beirut" ' data-geo="33.88333,35.5,EEST,LB,+2" '> timeZone: "Asia/Beirut" </option><option value=' timeZone: "Asia/Bishkek" ' data-geo="42.9,74.6,+06,KG,+6" '> timeZone: "Asia/Bishkek" </option><option value=' timeZone: "Asia/Brunei" ' data-geo="4.93333,114.91666,+08,BN,+8" '> timeZone: "Asia/Brunei" </option><option value=' timeZone: "Asia/Choibalsan" ' data-geo="48.06666,114.5,+08,MN,+8" '> timeZone: "Asia/Choibalsan" </option><option value=' timeZone: "Asia/Chongqing" ' data-geo="29.56666,106.58333,UTC,??,+8" '> timeZone: "Asia/Chongqing" </option><option value=' timeZone: "Asia/Colombo" ' data-geo="6.93333,79.85,+0530,LK,+5.5" '> timeZone: "Asia/Colombo" </option><option value=' timeZone: "Asia/Damascus" ' data-geo="33.5,36.3,EEST,SY,+2" '> timeZone: "Asia/Damascus" </option><option value=' timeZone: "Asia/Dhaka" ' data-geo="23.71666,90.41666,+06,BD,+6" '> timeZone: "Asia/Dhaka" </option><option value=' timeZone: "Asia/Dili" ' data-geo="-8.55,125.58333,+09,TL,+9" '> timeZone: "Asia/Dili" </option><option value=' timeZone: "Asia/Dubai" ' data-geo="25.3,55.3,+04,AE,+4" '> timeZone: "Asia/Dubai" </option><option value=' timeZone: "Asia/Dushanbe" ' data-geo="38.58333,68.8,+05,TJ,+5" '> timeZone: "Asia/Dushanbe" </option><option value=' timeZone: "Asia/Gaza" ' data-geo="31.5,34.46666,EEST,PS,+2" '> timeZone: "Asia/Gaza" </option><option value=' timeZone: "Asia/Harbin" ' data-geo="45.75,126.68333,UTC,??,+8" '> timeZone: "Asia/Harbin" </option><option value=' timeZone: "Asia/Hebron" ' data-geo="31.53333,35.095,EEST,PS,+2" '> timeZone: "Asia/Hebron" </option><option value=' timeZone: "Asia/Ho_Chi_Minh" ' data-geo="10.75,106.66666,+07,VN,+7" '> timeZone: "Asia/Ho_Chi_Minh" </option><option value=' timeZone: "Asia/Hong_Kong" ' data-geo="22.28333,114.14999,HKT,HK,+8" '> timeZone: "Asia/Hong_Kong" </option><option value=' timeZone: "Asia/Hovd" ' data-geo="48.01666,91.64999,+07,MN,+7" '> timeZone: "Asia/Hovd" </option><option value=' timeZone: "Asia/Irkutsk" ' data-geo="52.26666,104.33333,+08,RU,+8" '> timeZone: "Asia/Irkutsk" </option><option value=' timeZone: "Asia/Jakarta" ' data-geo="-6.16667,106.8,WIB,ID,+7" '> timeZone: "Asia/Jakarta" </option><option value=' timeZone: "Asia/Jayapura" ' data-geo="-2.53334,140.7,WIT,ID,+9" '> timeZone: "Asia/Jayapura" </option><option value=' timeZone: "Asia/Jerusalem" ' data-geo="31.76666,35.23333,IDT,IL,+2" '> timeZone: "Asia/Jerusalem" </option><option value=' timeZone: "Asia/Kabul" ' data-geo="34.51666,69.2,+0430,AF,+4.5" '> timeZone: "Asia/Kabul" </option><option value=' timeZone: "Asia/Kamchatka" ' data-geo="53.01666,158.65,+12,RU,+12" '> timeZone: "Asia/Kamchatka" </option><option value=' timeZone: "Asia/Karachi" ' data-geo="24.86666,67.05,PKT,PK,+5" '> timeZone: "Asia/Karachi" </option><option value=' timeZone: "Asia/Kashgar" ' data-geo="39.48333,75.98333,UTC,??,+6" '> timeZone: "Asia/Kashgar" </option><option value=' timeZone: "Asia/Kathmandu" ' data-geo="27.71666,85.31666,+0545,NP,+5.75" '> timeZone: "Asia/Kathmandu" </option><option value=' timeZone: "Asia/Kolkata" ' data-geo="22.53333,88.36666,IST,IN,+5.5" '> timeZone: "Asia/Kolkata" </option><option value=' timeZone: "Asia/Krasnoyarsk" ' data-geo="56.01666,92.83333,+07,RU,+7" '> timeZone: "Asia/Krasnoyarsk" </option><option value=' timeZone: "Asia/Kuala_Lumpur" ' data-geo="3.16666,101.7,+08,MY,+8" '> timeZone: "Asia/Kuala_Lumpur" </option><option value=' timeZone: "Asia/Kuching" ' data-geo="1.55,110.33333,+08,MY,+8" '> timeZone: "Asia/Kuching" </option><option value=' timeZone: "Asia/Kuwait" ' data-geo="29.33333,47.98333,+03,KW,+3" '> timeZone: "Asia/Kuwait" </option><option value=' timeZone: "Asia/Macau" ' data-geo="22.23333,113.58333,CST,MO,+8" '> timeZone: "Asia/Macau" </option><option value=' timeZone: "Asia/Magadan" ' data-geo="59.56666,150.8,+11,RU,+10" '> timeZone: "Asia/Magadan" </option><option value=' timeZone: "Asia/Makassar" ' data-geo="-5.11667,119.39999,WITA,ID,+8" '> timeZone: "Asia/Makassar" </option><option value=' timeZone: "Asia/Manila" ' data-geo="14.58333,121,PST,PH,+8" '> timeZone: "Asia/Manila" </option><option value=' timeZone: "Asia/Muscat" ' data-geo="23.6,58.58333,+04,OM,+4" '> timeZone: "Asia/Muscat" </option><option value=' timeZone: "Asia/Nicosia" ' data-geo="35.16666,33.36666,EEST,CY,+2" '> timeZone: "Asia/Nicosia" </option><option value=' timeZone: "Asia/Novokuznetsk" ' data-geo="53.75,87.11666,+07,RU,+7" '> timeZone: "Asia/Novokuznetsk" </option><option value=' timeZone: "Asia/Novosibirsk" ' data-geo="55.03333,82.91666,+07,RU,+6" '> timeZone: "Asia/Novosibirsk" </option><option value=' timeZone: "Asia/Omsk" ' data-geo="55,73.4,+06,RU,+6" '> timeZone: "Asia/Omsk" </option><option value=' timeZone: "Asia/Oral" ' data-geo="51.21666,51.35,+05,KZ,+5" '> timeZone: "Asia/Oral" </option><option value=' timeZone: "Asia/Phnom_Penh" ' data-geo="11.55,104.91666,+07,KH,+7" '> timeZone: "Asia/Phnom_Penh" </option><option value=' timeZone: "Asia/Pontianak" ' data-geo="-0.03334,109.33333,WIB,ID,+7" '> timeZone: "Asia/Pontianak" </option><option value=' timeZone: "Asia/Pyongyang" ' data-geo="39.01666,125.75,KST,KP,+9" '> timeZone: "Asia/Pyongyang" </option><option value=' timeZone: "Asia/Qatar" ' data-geo="25.28333,51.53333,+03,QA,+3" '> timeZone: "Asia/Qatar" </option><option value=' timeZone: "Asia/Qyzylorda" ' data-geo="44.8,65.46666,+05,KZ,+6" '> timeZone: "Asia/Qyzylorda" </option><option value=' timeZone: "Asia/Rangoon" ' data-geo="16.78333,96.16666,UTC,MM,+6.5" '> timeZone: "Asia/Rangoon" </option><option value=' timeZone: "Asia/Riyadh" ' data-geo="24.63333,46.71666,+03,SA,+3" '> timeZone: "Asia/Riyadh" </option><option value=' timeZone: "Asia/Sakhalin" ' data-geo="46.96666,142.7,+11,RU,+10" '> timeZone: "Asia/Sakhalin" </option><option value=' timeZone: "Asia/Samarkand" ' data-geo="39.66666,66.8,+05,UZ,+5" '> timeZone: "Asia/Samarkand" </option><option value=' timeZone: "Asia/Seoul" ' data-geo="37.55,126.96666,KST,KR,+9" '> timeZone: "Asia/Seoul" </option><option value=' timeZone: "Asia/Shanghai" ' data-geo="31.23333,121.46666,CST,CN,+8" '> timeZone: "Asia/Shanghai" </option><option value=' timeZone: "Asia/Singapore" ' data-geo="1.28333,103.85,+08,SG,+8" '> timeZone: "Asia/Singapore" </option><option value=' timeZone: "Asia/Taipei" ' data-geo="25.05,121.5,CST,TW,+8" '> timeZone: "Asia/Taipei" </option><option value=' timeZone: "Asia/Tashkent" ' data-geo="41.33333,69.3,+05,UZ,+5" '> timeZone: "Asia/Tashkent" </option><option value=' timeZone: "Asia/Tbilisi" ' data-geo="41.71666,44.81666,+04,GE,+4" '> timeZone: "Asia/Tbilisi" </option><option value=' timeZone: "Asia/Tehran" ' data-geo="35.66666,51.43333,+0430,IR,+3.5" '> timeZone: "Asia/Tehran" </option><option value=' timeZone: "Asia/Thimphu" ' data-geo="27.46666,89.64999,+06,BT,+6" '> timeZone: "Asia/Thimphu" </option><option value=' timeZone: "Asia/Tokyo" ' data-geo="35.65444,139.74472,JST,JP,+9" '> timeZone: "Asia/Tokyo" </option><option value=' timeZone: "Asia/Ulaanbaatar" ' data-geo="47.91666,106.88333,+08,MN,+8" '> timeZone: "Asia/Ulaanbaatar" </option><option value=' timeZone: "Asia/Urumqi" ' data-geo="43.8,87.58333,+06,CN,+6" '> timeZone: "Asia/Urumqi" </option><option value=' timeZone: "Asia/Vientiane" ' data-geo="17.96666,102.6,+07,LA,+7" '> timeZone: "Asia/Vientiane" </option><option value=' timeZone: "Asia/Vladivostok" ' data-geo="43.16666,131.93333,+10,RU,+10" '> timeZone: "Asia/Vladivostok" </option><option value=' timeZone: "Asia/Yakutsk" ' data-geo="62,129.66666,+09,RU,+9" '> timeZone: "Asia/Yakutsk" </option><option value=' timeZone: "Asia/Yekaterinburg" ' data-geo="56.85,60.6,+05,RU,+5" '> timeZone: "Asia/Yekaterinburg" </option><option value=' timeZone: "Asia/Yerevan" ' data-geo="40.18333,44.5,+04,AM,+4" '> timeZone: "Asia/Yerevan" </option><option value=' timeZone: "Atlantic/Azores" ' data-geo="37.73333,-25.66667,+00,PT,-1" '> timeZone: "Atlantic/Azores" </option><option value=' timeZone: "Atlantic/Bermuda" ' data-geo="32.28333,-64.76667,ADT,BM,-4" '> timeZone: "Atlantic/Bermuda" </option><option value=' timeZone: "Atlantic/Canary" ' data-geo="28.1,-15.4,WEST,ES,+0" '> timeZone: "Atlantic/Canary" </option><option value=' timeZone: "Atlantic/Cape_Verde" ' data-geo="14.91666,-23.51667,-01,CV,-1" '> timeZone: "Atlantic/Cape_Verde" </option><option value=' timeZone: "Atlantic/Faroe" ' data-geo="62.01666,-6.76667,WEST,FO,+0" '> timeZone: "Atlantic/Faroe" </option><option value=' timeZone: "Atlantic/Madeira" ' data-geo="32.63333,-16.9,WEST,PT,+0" '> timeZone: "Atlantic/Madeira" </option><option value=' timeZone: "Atlantic/Reykjavik" ' data-geo="64.15,-21.85,GMT,IS,+0" '> timeZone: "Atlantic/Reykjavik" </option><option value=' timeZone: "Atlantic/South_Georgia" ' data-geo="-54.26667,-36.53334,-02,GS,-2" '> timeZone: "Atlantic/South_Georgia" </option><option value=' timeZone: "Atlantic/St_Helena" ' data-geo="-15.91667,-5.7,GMT,SH,+0" '> timeZone: "Atlantic/St_Helena" </option><option value=' timeZone: "Atlantic/Stanley" ' data-geo="-51.70001,-57.85,-03,FK,-3" '> timeZone: "Atlantic/Stanley" </option><option value=' timeZone: "Australia/Adelaide" ' data-geo="-34.91667,138.58333,ACST,AU,+10.5" '> timeZone: "Australia/Adelaide" </option><option value=' timeZone: "Australia/Brisbane" ' data-geo="-27.46667,153.03333,AEST,AU,+10" '> timeZone: "Australia/Brisbane" </option><option value=' timeZone: "Australia/Broken_Hill" ' data-geo="-31.95,141.45,ACST,AU,+10.5" '> timeZone: "Australia/Broken_Hill" </option><option value=' timeZone: "Australia/Currie" ' data-geo="-39.93334,143.86666,AEST,AU,+11" '> timeZone: "Australia/Currie" </option><option value=' timeZone: "Australia/Darwin" ' data-geo="-12.46667,130.83333,ACST,AU,+9.5" '> timeZone: "Australia/Darwin" </option><option value=' timeZone: "Australia/Eucla" ' data-geo="-31.71667,128.86666,+0845,AU,+8.75" '> timeZone: "Australia/Eucla" </option><option value=' timeZone: "Australia/Hobart" ' data-geo="-42.88334,147.31666,AEST,AU,+11" '> timeZone: "Australia/Hobart" </option><option value=' timeZone: "Australia/Lindeman" ' data-geo="-20.26667,149,AEST,AU,+10" '> timeZone: "Australia/Lindeman" </option><option value=' timeZone: "Australia/Lord_Howe" ' data-geo="-31.55,159.08333,+1030,AU,+11" '> timeZone: "Australia/Lord_Howe" </option><option value=' timeZone: "Australia/Melbourne" ' data-geo="-37.81667,144.96666,AEST,AU,+11" '> timeZone: "Australia/Melbourne" </option><option value=' timeZone: "Australia/Sydney" ' data-geo="-33.86667,151.21666,AEST,AU,+11" '> timeZone: "Australia/Sydney" </option><option value=' timeZone: "Europe/Amsterdam" ' data-geo="52.36666,4.9,CEST,NL,+1" '> timeZone: "Europe/Amsterdam" </option><option value=' timeZone: "Europe/Andorra" ' data-geo="42.5,1.51666,CEST,AD,+1" '> timeZone: "Europe/Andorra" </option><option value=' timeZone: "Europe/Athens" ' data-geo="37.96666,23.71666,EEST,GR,+2" '> timeZone: "Europe/Athens" </option><option value=' timeZone: "Europe/Belgrade" ' data-geo="44.83333,20.5,CEST,RS,+1" '> timeZone: "Europe/Belgrade" </option><option value=' timeZone: "Europe/Berlin" ' data-geo="52.5,13.36666,CEST,DE,+1" '> timeZone: "Europe/Berlin" </option><option value=' timeZone: "Europe/Bratislava" ' data-geo="48.15,17.11666,CEST,SK,+1" '> timeZone: "Europe/Bratislava" </option><option value=' timeZone: "Europe/Brussels" ' data-geo="50.83333,4.33333,CEST,BE,+1" '> timeZone: "Europe/Brussels" </option><option value=' timeZone: "Europe/Bucharest" ' data-geo="44.43333,26.1,EEST,RO,+2" '> timeZone: "Europe/Bucharest" </option><option value=' timeZone: "Europe/Budapest" ' data-geo="47.5,19.08333,CEST,HU,+1" '> timeZone: "Europe/Budapest" </option><option value=' timeZone: "Europe/Chisinau" ' data-geo="47,28.83333,EEST,MD,+2" '> timeZone: "Europe/Chisinau" </option><option value=' timeZone: "Europe/Copenhagen" ' data-geo="55.66666,12.58333,CEST,DK,+1" '> timeZone: "Europe/Copenhagen" </option><option value=' timeZone: "Europe/Dublin" ' data-geo="53.33333,-6.25,IST,IE,+0" '> timeZone: "Europe/Dublin" </option><option value=' timeZone: "Europe/Gibraltar" ' data-geo="36.13333,-5.35,CEST,GI,+1" '> timeZone: "Europe/Gibraltar" </option><option value=' timeZone: "Europe/Guernsey" ' data-geo="49.44999,-2.53334,BST,GG,+0" '> timeZone: "Europe/Guernsey" </option><option value=' timeZone: "Europe/Helsinki" ' data-geo="60.16666,24.96666,EEST,FI,+2" '> timeZone: "Europe/Helsinki" </option><option value=' timeZone: "Europe/Isle_of_Man" ' data-geo="54.15,-4.46667,BST,IM,+0" '> timeZone: "Europe/Isle_of_Man" </option><option value=' timeZone: "Europe/Istanbul" ' data-geo="41.01666,28.96666,+03,TR,+2" '> timeZone: "Europe/Istanbul" </option><option value=' timeZone: "Europe/Jersey" ' data-geo="49.19999,-2.11667,BST,JE,+0" '> timeZone: "Europe/Jersey" </option><option value=' timeZone: "Europe/Kaliningrad" ' data-geo="54.71666,20.5,EET,RU,+2" '> timeZone: "Europe/Kaliningrad" </option><option value=' timeZone: "Europe/Kiev" ' data-geo="50.43333,30.51666,EEST,UA,+2" '> timeZone: "Europe/Kiev" </option><option value=' timeZone: "Europe/Lisbon" ' data-geo="38.71666,-9.13334,WEST,PT,+0" '> timeZone: "Europe/Lisbon" </option><option value=' timeZone: "Europe/Ljubljana" ' data-geo="46.05,14.51666,CEST,SI,+1" '> timeZone: "Europe/Ljubljana" </option><option value=' timeZone: "Europe/Luxembourg" ' data-geo="49.6,6.15,CEST,LU,+1" '> timeZone: "Europe/Luxembourg" </option><option value=' timeZone: "Europe/Madrid" ' data-geo="40.4,-3.68334,CEST,ES,+1" '> timeZone: "Europe/Madrid" </option><option value=' timeZone: "Europe/Malta" ' data-geo="35.9,14.51666,CEST,MT,+1" '> timeZone: "Europe/Malta" </option><option value=' timeZone: "Europe/Mariehamn" ' data-geo="60.1,19.95,EEST,AX,+2" '> timeZone: "Europe/Mariehamn" </option><option value=' timeZone: "Europe/Minsk" ' data-geo="53.9,27.56666,+03,BY,+3" '> timeZone: "Europe/Minsk" </option><option value=' timeZone: "Europe/Monaco" ' data-geo="43.69999,7.38333,CEST,MC,+1" '> timeZone: "Europe/Monaco" </option><option value=' timeZone: "Europe/Moscow" ' data-geo="55.75,37.58333,MSK,RU,+3" '> timeZone: "Europe/Moscow" </option><option value=' timeZone: "Europe/Oslo" ' data-geo="59.91666,10.75,CEST,NO,+1" '> timeZone: "Europe/Oslo" </option><option value=' timeZone: "Europe/Paris" ' data-geo="48.86666,2.33333,CEST,FR,+1" '> timeZone: "Europe/Paris" </option><option value=' timeZone: "Europe/Podgorica" ' data-geo="42.43333,19.26666,CEST,ME,+1" '> timeZone: "Europe/Podgorica" </option><option value=' timeZone: "Europe/Prague" ' data-geo="50.08333,14.43333,CEST,CZ,+1" '> timeZone: "Europe/Prague" </option><option value=' timeZone: "Europe/Riga" ' data-geo="56.94999,24.1,EEST,LV,+2" '> timeZone: "Europe/Riga" </option><option value=' timeZone: "Europe/Rome" ' data-geo="41.9,12.48333,CEST,IT,+1" '> timeZone: "Europe/Rome" </option><option value=' timeZone: "Europe/Samara" ' data-geo="53.19999,50.15,+04,RU,+4" '> timeZone: "Europe/Samara" </option><option value=' timeZone: "Europe/San_Marino" ' data-geo="43.91666,12.46666,CEST,SM,+1" '> timeZone: "Europe/San_Marino" </option><option value=' timeZone: "Europe/Sarajevo" ' data-geo="43.86666,18.41666,CEST,BA,+1" '> timeZone: "Europe/Sarajevo" </option><option value=' timeZone: "Europe/Simferopol" ' data-geo="44.94999,34.1,MSK,RU,+3" '> timeZone: "Europe/Simferopol" </option><option value=' timeZone: "Europe/Skopje" ' data-geo="41.98333,21.43333,CEST,MK,+1" '> timeZone: "Europe/Skopje" </option><option value=' timeZone: "Europe/Sofia" ' data-geo="42.68333,23.31666,EEST,BG,+2" '> timeZone: "Europe/Sofia" </option><option value=' timeZone: "Europe/Stockholm" ' data-geo="59.33333,18.05,CEST,SE,+1" '> timeZone: "Europe/Stockholm" </option><option value=' timeZone: "Europe/Tallinn" ' data-geo="59.41666,24.75,EEST,EE,+2" '> timeZone: "Europe/Tallinn" </option><option value=' timeZone: "Europe/Tirane" ' data-geo="41.33333,19.83333,CEST,AL,+1" '> timeZone: "Europe/Tirane" </option><option value=' timeZone: "Europe/Uzhgorod" ' data-geo="48.61666,22.3,EEST,UA,+2" '> timeZone: "Europe/Uzhgorod" </option><option value=' timeZone: "Europe/Vaduz" ' data-geo="47.15,9.51666,CEST,LI,+1" '> timeZone: "Europe/Vaduz" </option><option value=' timeZone: "Europe/Vatican" ' data-geo="41.90222,12.45305,CEST,VA,+1" '> timeZone: "Europe/Vatican" </option><option value=' timeZone: "Europe/Vienna" ' data-geo="48.21666,16.33333,CEST,AT,+1" '> timeZone: "Europe/Vienna" </option><option value=' timeZone: "Europe/Vilnius" ' data-geo="54.68333,25.31666,EEST,LT,+2" '> timeZone: "Europe/Vilnius" </option><option value=' timeZone: "Europe/Volgograd" ' data-geo="48.73333,44.41666,+04,RU,+3" '> timeZone: "Europe/Volgograd" </option><option value=' timeZone: "Europe/Warsaw" ' data-geo="52.25,21,CEST,PL,+1" '> timeZone: "Europe/Warsaw" </option><option value=' timeZone: "Europe/Zagreb" ' data-geo="45.8,15.96666,CEST,HR,+1" '> timeZone: "Europe/Zagreb" </option><option value=' timeZone: "Europe/Zaporozhye" ' data-geo="47.83333,35.16666,EEST,UA,+2" '> timeZone: "Europe/Zaporozhye" </option><option value=' timeZone: "Europe/Zurich" ' data-geo="47.38333,8.53333,CEST,CH,+1" '> timeZone: "Europe/Zurich" </option><option value=' timeZone: "Indian/Antananarivo" ' data-geo="-18.91667,47.51666,EAT,MG,+3" '> timeZone: "Indian/Antananarivo" </option><option value=' timeZone: "Indian/Chagos" ' data-geo="-7.33334,72.41666,+06,IO,+6" '> timeZone: "Indian/Chagos" </option><option value=' timeZone: "Indian/Christmas" ' data-geo="-10.41667,105.71666,+07,CX,+7" '> timeZone: "Indian/Christmas" </option><option value=' timeZone: "Indian/Cocos" ' data-geo="-12.16667,96.91666,+0630,CC,+6.5" '> timeZone: "Indian/Cocos" </option><option value=' timeZone: "Indian/Comoro" ' data-geo="-11.68334,43.26666,EAT,KM,+3" '> timeZone: "Indian/Comoro" </option><option value=' timeZone: "Indian/Kerguelen" ' data-geo="-49.35278,70.2175,+05,TF,+5" '> timeZone: "Indian/Kerguelen" </option><option value=' timeZone: "Indian/Mahe" ' data-geo="-4.66667,55.46666,+04,SC,+4" '> timeZone: "Indian/Mahe" </option><option value=' timeZone: "Indian/Maldives" ' data-geo="4.16666,73.5,+05,MV,+5" '> timeZone: "Indian/Maldives" </option><option value=' timeZone: "Indian/Mauritius" ' data-geo="-20.16667,57.5,+04,MU,+4" '> timeZone: "Indian/Mauritius" </option><option value=' timeZone: "Indian/Mayotte" ' data-geo="-12.78334,45.23333,EAT,YT,+3" '> timeZone: "Indian/Mayotte" </option><option value=' timeZone: "Indian/Reunion" ' data-geo="-20.86667,55.46666,+04,RE,+4" '> timeZone: "Indian/Reunion" </option><option value=' timeZone: "Pacific/Apia" ' data-geo="-13.83334,-171.73334,+13,WS,+14" '> timeZone: "Pacific/Apia" </option><option value=' timeZone: "Pacific/Auckland" ' data-geo="-36.86667,174.76666,NZST,NZ,+13" '> timeZone: "Pacific/Auckland" </option><option value=' timeZone: "Pacific/Chatham" ' data-geo="-43.95,-176.55001,+1245,NZ,+13.75" '> timeZone: "Pacific/Chatham" </option><option value=' timeZone: "Pacific/Chuuk" ' data-geo="7.41666,151.78333,+10,FM,+10" '> timeZone: "Pacific/Chuuk" </option><option value=' timeZone: "Pacific/Easter" ' data-geo="-27.15,-109.43334,-05,CL,-5" '> timeZone: "Pacific/Easter" </option><option value=' timeZone: "Pacific/Efate" ' data-geo="-17.66667,168.41666,+11,VU,+11" '> timeZone: "Pacific/Efate" </option><option value=' timeZone: "Pacific/Enderbury" ' data-geo="-3.13334,-171.08334,+13,KI,+13" '> timeZone: "Pacific/Enderbury" </option><option value=' timeZone: "Pacific/Fakaofo" ' data-geo="-9.36667,-171.23334,+13,TK,+13" '> timeZone: "Pacific/Fakaofo" </option><option value=' timeZone: "Pacific/Fiji" ' data-geo="-18.13334,178.41666,+12,FJ,+13" '> timeZone: "Pacific/Fiji" </option><option value=' timeZone: "Pacific/Funafuti" ' data-geo="-8.51667,179.21666,+12,TV,+12" '> timeZone: "Pacific/Funafuti" </option><option value=' timeZone: "Pacific/Galapagos" ' data-geo="-0.9,-89.6,-06,EC,-6" '> timeZone: "Pacific/Galapagos" </option><option value=' timeZone: "Pacific/Gambier" ' data-geo="-23.13334,-134.95,-09,PF,-9" '> timeZone: "Pacific/Gambier" </option><option value=' timeZone: "Pacific/Guadalcanal" ' data-geo="-9.53334,160.2,+11,SB,+11" '> timeZone: "Pacific/Guadalcanal" </option><option value=' timeZone: "Pacific/Guam" ' data-geo="13.46666,144.75,ChST,GU,+10" '> timeZone: "Pacific/Guam" </option><option value=' timeZone: "Pacific/Honolulu" ' data-geo="21.30694,-157.85834,HST,US,-10" '> timeZone: "Pacific/Honolulu" </option><option value=' timeZone: "Pacific/Johnston" ' data-geo="16.75,-169.51667,UTC,UM,-10" '> timeZone: "Pacific/Johnston" </option><option value=' timeZone: "Pacific/Kiritimati" ' data-geo="1.86666,-157.33334,+14,KI,+14" '> timeZone: "Pacific/Kiritimati" </option><option value=' timeZone: "Pacific/Kosrae" ' data-geo="5.31666,162.98333,+11,FM,+11" '> timeZone: "Pacific/Kosrae" </option><option value=' timeZone: "Pacific/Kwajalein" ' data-geo="9.08333,167.33333,+12,MH,+12" '> timeZone: "Pacific/Kwajalein" </option><option value=' timeZone: "Pacific/Majuro" ' data-geo="7.15,171.2,+12,MH,+12" '> timeZone: "Pacific/Majuro" </option><option value=' timeZone: "Pacific/Marquesas" ' data-geo="-9,-139.5,-0930,PF,-9.5" '> timeZone: "Pacific/Marquesas" </option><option value=' timeZone: "Pacific/Midway" ' data-geo="28.21666,-177.36667,SST,UM,-11" '> timeZone: "Pacific/Midway" </option><option value=' timeZone: "Pacific/Nauru" ' data-geo="-0.51667,166.91666,+12,NR,+12" '> timeZone: "Pacific/Nauru" </option><option value=' timeZone: "Pacific/Niue" ' data-geo="-19.01667,-169.91667,-11,NU,-11" '> timeZone: "Pacific/Niue" </option><option value=' timeZone: "Pacific/Norfolk" ' data-geo="-29.05,167.96666,+11,NF,+11.5" '> timeZone: "Pacific/Norfolk" </option><option value=' timeZone: "Pacific/Noumea" ' data-geo="-22.26667,166.45,+11,NC,+11" '> timeZone: "Pacific/Noumea" </option><option value=' timeZone: "Pacific/Pago_Pago" ' data-geo="-14.26667,-170.7,SST,AS,-11" '> timeZone: "Pacific/Pago_Pago" </option><option value=' timeZone: "Pacific/Palau" ' data-geo="7.33333,134.48333,+09,PW,+9" '> timeZone: "Pacific/Palau" </option><option value=' timeZone: "Pacific/Pitcairn" ' data-geo="-25.06667,-130.08334,-08,PN,-8" '> timeZone: "Pacific/Pitcairn" </option><option value=' timeZone: "Pacific/Pohnpei" ' data-geo="6.96666,158.21666,+11,FM,+11" '> timeZone: "Pacific/Pohnpei" </option><option value=' timeZone: "Pacific/Port_Moresby" ' data-geo="-9.5,147.16666,+10,PG,+10" '> timeZone: "Pacific/Port_Moresby" </option><option value=' timeZone: "Pacific/Rarotonga" ' data-geo="-21.23334,-159.76667,-10,CK,-10" '> timeZone: "Pacific/Rarotonga" </option><option value=' timeZone: "Pacific/Saipan" ' data-geo="15.2,145.75,ChST,MP,+10" '> timeZone: "Pacific/Saipan" </option><option value=' timeZone: "Pacific/Tahiti" ' data-geo="-17.53334,-149.56667,-10,PF,-10" '> timeZone: "Pacific/Tahiti" </option><option value=' timeZone: "Pacific/Tarawa" ' data-geo="1.41666,173,+12,KI,+12" '> timeZone: "Pacific/Tarawa" </option><option value=' timeZone: "Pacific/Tongatapu" ' data-geo="-21.16667,-175.16667,+13,TO,+13" '> timeZone: "Pacific/Tongatapu" </option><option value=' timeZone: "Pacific/Wake" ' data-geo="19.28333,166.61666,+12,UM,+12" '> timeZone: "Pacific/Wake" </option><option value=' timeZone: "Pacific/Wallis" ' data-geo="-13.3,-176.16667,+12,WF,+12" '> timeZone: "Pacific/Wallis" </option><option value=' timeZone: "Australia/Perth" ' data-geo="-31.95,115.85,AWST,AU,+8" '> timeZone: "Australia/Perth" </option><option value=' timeZone: "Antarctica/Troll" ' data-geo="-72.01139,2.535,+02,AQ,+0" '> timeZone: "Antarctica/Troll" </option><option value=' timeZone: "Asia/Chita" ' data-geo="52.05,113.46666,+09,RU,+8" '> timeZone: "Asia/Chita" </option><option value=' timeZone: "Asia/Khandyga" ' data-geo="62.65638,135.55388,+09,RU,+9" '> timeZone: "Asia/Khandyga" </option><option value=' timeZone: "Asia/Srednekolymsk" ' data-geo="67.46666,153.71666,+11,RU,+11" '> timeZone: "Asia/Srednekolymsk" </option><option value=' timeZone: "Asia/Ust-Nera" ' data-geo="64.56027,143.22666,+10,RU,+10" '> timeZone: "Asia/Ust-Nera" </option><option value=' timeZone: "Europe/Busingen" ' data-geo="47.69999,8.68333,CEST,DE,+1" '> timeZone: "Europe/Busingen" </option><option value=' timeZone: "Pacific/Bougainville" ' data-geo="-6.21667,155.56666,+11,PG,+11" '> timeZone: "Pacific/Bougainville" </option><option value=' timeZone: "America/Fort_Nelson" ' data-geo="58.8,-122.7,MST" '> timeZone: "America/Fort_Nelson" </option><option value=' timeZone: "Asia/Atyrau" ' data-geo="47.11666,51.93333,+05" '> timeZone: "Asia/Atyrau" </option><option value=' timeZone: "Asia/Barnaul" ' data-geo="53.36666,83.75,+07" '> timeZone: "Asia/Barnaul" </option><option value=' timeZone: "Asia/Famagusta" ' data-geo="35.11666,33.95,EEST" '> timeZone: "Asia/Famagusta" </option><option value=' timeZone: "Asia/Tomsk" ' data-geo="56.5,84.96666,+07" '> timeZone: "Asia/Tomsk" </option><option value=' timeZone: "Europe/London" ' data-geo="51.5074,-0.1278,BST,GB,+0" '> timeZone: "Europe/London" </option></select>

<table border=20 style='width:100%;'>
<tr><th>Result</th><th class=edt>Editable Javascript Code<br><br><div style=font-weight:normal;> ... in addition to ...</div><div style=font-weight:normal; translate=no><br><br>var d = new Date();<br>
var timedatenow = new Date(d.getUTCFullYear(), d.getUTCMonth(), d.getUTCDate(), d.getUTCHours(), d.getUTCMinutes(), d.getUTCSeconds(), d.getUTCMilliseconds());
</div></th><th>Process</th></tr>
<tr id=eg1 translate=no><td id=r1></td><td class=edt id=ejc1 contenteditable=true translate=no>
var options = {year: "2-digit", month: "2-digit", day: "2-digit", hour: "2-digit", minute: "2-digit", timeZoneName: "short"};<br>
var americandatetime = new Intl.DateTimeFormat("<b>en-US</b>",options).format;<br>
if (1 == 11) { alert(americandatetime(timedatenow)); }<br>
</td><td id=tdb1><button onclick="doit(this);" id=b1 style="background-color:yellow;" title="Update Result via amended Javascript code">Update</button></td></tr>

<tr id=eg2 translate=no><td id=r2></td><td class=edt id=ejc2 contenteditable=true translate=no>
var poptions = {year: "numeric", month: "long", day: "numeric", hour: "2-digit", minute: "2-digit", timeZoneName: "short", timeZone: "UTC"};<br>
var portuguesetime = new Intl.DateTimeFormat(["<b>pt-BR</b>", "<b>pt-PT</b>"], poptions); <br>
if (1 == 11) { alert(portuguesetime.format(timedatenow)); }<br>
</td><td id=tdb2><button onclick="doit(this);" id=b2 style="background-color:yellow;" title="Update Result via amended Javascript code">Update</button></td></tr>

<tr id=eg3 translate=no><td id=r3></td><td class=edt id=ejc3 contenteditable=true translate=no>
var swisslocales = ["<b>de-CH</b>", "<b>fr-CH</b>", "<b>it-CH</b>", "<b>rm-CH</b>"];<br>
var soptions = {weekday: "short", hour: "numeric", minute: "numeric", timeZone: "UTC", timeZoneName: "short"};<br>
var swisstime = new Intl.DateTimeFormat(swisslocales, soptions).format;<br>
if (1 == 11) { alert(swisstime(timedatenow)); }<br>
</td><td id=tdb3><button onclick="doit(this);" id=b3 style="background-color:yellow;" title="Update Result via amended Javascript code">Update</button></td></tr>

<tr id=eg4 translate=no><td id=r4></td><td class=edt id=ejc4 contenteditable=true translate=no>
var jpyearera = new Intl.DateTimeFormat("<b>ja-JP-u-ca-japanese</b>", {year: "numeric", era: "long"});<br>
if (1 == 11) { alert(jpyearera.format(timedatenow)); }<br>
</td><td id=tdb4><button onclick="doit(this);" id=b4 style="background-color:yellow;" title="Update Result via amended Javascript code">Update</button></td></tr>

<tr id=eg5 translate=no><td id=r5></td><td class=edt id=ejc5 contenteditable=true translate=no>
var toptions = {year: "numeric", month: "long", day: "numeric"};<br>
var thaidate = new Intl.DateTimeFormat("<b>th-TH-u-nu-thai-ca-chinese</b>", toptions); <br>
if (1 == 11) { alert(thaidate.format(timedatenow)); }<br>
</td><td id=tdb5><button onclick="doit(this);" id=b5 style="background-color:yellow;" title="Update Result via amended Javascript code">Update</button></td></tr>

</table>


</body>
</html>