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;
}
