var CIP_URLs = [];
CIP_URLs["XX"] = "http://www.command.com/3M/en_US/command/";
CIP_URLs["US"] = "http://www.command.com/3M/en_US/command/";
CIP_URLs["CA"] = "http://www.command.com/3M/en_CA/command-ca/";
var CIP_geoWS = "/CountryIP/?TYPE=JSON";

if(document.location.hostname.indexOf('fuze') <= -1) {
  var xhr = new XMLHttpRequest();
  xhr.onerror = function() {
      window.location = CIP_URLs["XX"];
  };
  xhr.onload = function() {
    var location = JSON.parse(xhr.response);
    if(location.countryCode && CIP_URLs[location.countryCode]) {
      window.location = CIP_URLs[location.countryCode];
    } else {
      window.location = CIP_URLs["XX"];
    }
  };

  xhr.open("get", CIP_geoWS, true);
  xhr.send(null);
}