In French windows(windows 7 OS language set as French) i am using the following code to get the time zone name but i am getting the time zone name in French language which i wanted in English.
function getTimeZone() {
return /\((.*)\)/.exec(new Date().toString())[1];
}