function changeLocation() {
  var thediv = document.getElementById('displaybox');
  var divPnl = document.getElementById('displaypanel');
  if (thediv.style.display == "none") {
    thediv.style.display = "";
    divPnl.style.display = "";
    document.getElementById('ifLocation').src = "/Location.aspx?NEW";
  } else {
    if (document.getElementById('ifLocation').src.toLowerCase().indexOf('storeno=999') > 0) {
      window.top.location = "/default.aspx";
    }
    else {
      thediv.style.display = "none";
      divPnl.style.display = "none";
    }
  }
  return true;
}

function changeLocationTarget(URL) {
  var thediv = document.getElementById('displaybox');
  var divPnl = document.getElementById('displaypanel');
  if (thediv.style.display == "none") {
    thediv.style.display = "";
    divPnl.style.display = "";
    document.getElementById('ifLocation').src = "/Location.aspx?target=" + URL;
  } else {
    if (document.getElementById('ifLocation').src.toLowerCase().indexOf('storeno=999') > 0) {
      window.top.location = "/default.aspx";
    }
    else {
      thediv.style.display = "none";
      divPnl.style.display = "none";
    }
  }
  return true;
}

function NoStore() {
  alert("There is no store in your location.")
  window.top.location.href = "/default.aspx";
}

function GoToVideo() {
  window.top.location.href = "/OutOfTown.aspx";
}

function changeLocationStore(CoCode, StoreNo, URL) {
  var thediv = document.getElementById('displaybox');
  var divPnl = document.getElementById('displaypanel');
  if (thediv.style.display == "none") {
    thediv.style.display = "";
    divPnl.style.display = "";
    document.getElementById('ifLocation').src = "/Location.aspx?CoCode=" + CoCode + "&StoreNo=" + StoreNo + "&target=" + URL;
  } else {
    if (document.getElementById('ifLocation').src.toLowerCase().indexOf('storeno=999') > 0) {
      window.top.location = "/default.aspx";
    }
    else {
      thediv.style.display = "none";
      divPnl.style.display = "none";
    }
  }
  return true;
}

function nav(url) {
  if (getCookie('MemberID') == "") {
    changeLocationTarget(url);
  }
  else {
    window.top.location.href = url;
  }
  // DO NOT RETURN VALUES!!!
  //return (true);
}

function nav998(url) {
  if ((getCookie('MemberID') == "") ||  (getCookie('MemStoreNo') == "998")) {
    changeLocationTarget(url);
  }
  else {
    window.top.location.href = url;
  }
  // DO NOT RETURN VALUES!!!
  //return (true);
}


function getCookie(c_name) {
  if (document.cookie.length > 0) {
    c_start = document.cookie.indexOf(c_name + "=");
    if (c_start != -1) {
      c_start = c_start + c_name.length + 1;
      c_end = document.cookie.indexOf(";", c_start);

      if (c_end == -1) c_end = document.cookie.length;

      c_end2 = document.cookie.indexOf("&", c_start);
      if (c_end2 == -1) c_end2 = c_end;

      if (c_end2 < c_end) c_end = c_end2;

      return unescape(document.cookie.substring(c_start, c_end));
    }
  }
  return "";
}
