﻿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";
  } else {
    thediv.style.display = "none";
    divPnl.style.display = "none";
    //thediv.innerHTML = '';
  }
  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 {
    thediv.style.display = "none";
    divPnl.style.display = "none";
    //thediv.innerHTML = '';
  }
  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";
}
