// JavaScript Document
// Get the modal
var modal = document.getElementById("myModal");

// Button in the Footer
var btn = document.getElementById("FooterRFI");


// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];

// When the user clicks on the button, open the modal
btn.onclick = function() {
  modal.style.display = "block" ;
};

// When the user clicks on <span> (x), close the modal
span.onclick = function() {
  modal.style.display = "none";
};



// Get the modal
var modal = document.getElementById("myModal");

// Button in Top Sticky Menu
var btn = document.getElementById("StickyRFI");

// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];

// When the user clicks on the button, open the modal
btn.onclick = function() {
  modal.style.display = "block";
};

// When the user clicks on <span> (x), close the modal
span.onclick = function() {
  modal.style.display = "none";
};


// Get the modal
var modal = document.getElementById("myModal");

// Button in Tabs on Page
var btn = document.getElementById("TabsRFI");

// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];

// When the user clicks on the button, open the modal
btn.onclick = function() {
  modal.style.display = "block";
};

// When the user clicks on <span> (x), close the modal
span.onclick = function() {
  modal.style.display = "none";
};



// Get the modal
var modal = document.getElementById("myModal");

// Button in Campus Menu
var btn = document.getElementById("CampusMenuRFI");

// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];

// When the user clicks on the button, open the modal
btn.onclick = function() {
  modal.style.display = "block";
};

// When the user clicks on <span> (x), close the modal
span.onclick = function() {
  modal.style.display = "none";
};



// Get the modal
var modal = document.getElementById("myModal");

// Button in Tabs on Page
var btn = document.getElementById("QuoteRFI");

// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];

// When the user clicks on the button, open the modal
btn.onclick = function() {
  modal.style.display = "block";
};

// When the user clicks on <span> (x), close the modal
span.onclick = function() {
  modal.style.display = "none";
};

