var countryCode = "US"; var COOKIE_LOCAL = "wasRedirected_locale"; /** * DrpCurrencySelectList. (If this is change from the DB this WILL NOT WORK anymore) -=JAY=- * Index 0: CAD (Canadian Dollar) * Index 1: USD (US Dollar) **/ function detectLocale() { if (!getCookie (COOKIE_LOCAL)) { if (countryCode == "CA") { var drpCurrencySelectList = document.getElementById("CurrencySelectList"); if ((drpCurrencySelectList.selectedIndex != 0) && confirm("Did you want to switch to Canadian currency?")) { drpCurrencySelectList.selectedIndex = 0; self.location='setcurrency.aspx?returnURL=Default.aspx¤cysetting=' + drpCurrencySelectList.value; } } else { var drpCurrencySelectList = document.getElementById("CurrencySelectList"); if ((drpCurrencySelectList.selectedIndex != 1) && confirm("Did you want to switch to US currency?")) { drpCurrencySelectList.selectedIndex = 1; self.location='setcurrency.aspx?returnURL=Default.aspx¤cysetting=' + drpCurrencySelectList.value; } } setCookie (COOKIE_LOCAL, true); } }//