// read cookie left by countryselector and redirect as required
function readCookie(name) {
  var nameEQ = name + "=";
  var ca = document.cookie.split(';');
  for(var i=0;i < ca.length;i++) {
    var c = ca[i];
    while (c.charAt(0)==' ') c = c.substring(1,c.length);
    if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
  }
  return null;
}

countryRedir = readCookie("country");
if ( countryRedir != null ) {
  var redirRelRoot = countryRedir.replace("\.html","/");
  redirRelRoot = redirRelRoot.replace("/content","");
  redirRelRoot = redirRelRoot.slice(0,15);
  if ((document.location.pathname != countryRedir) &&
      (document.location.pathname.indexOf(redirRelRoot) < 0 )) {
    window.location.href = countryRedir;
  }
}

