var callingSection = document.getElementById('CallingSection'); var callingIMGBTN = document.getElementById("CallingIMGBTN"); var callingBTN = document.getElementById("CallingBTN"); var callingClose = document.getElementsByClassName("CallingClose")[0]; var FloorSection = document.getElementById('FloorSection'); var FloorIMGBTN = document.getElementById("FloorIMGBTN"); var FloorBTN = document.getElementById("FloorBTN"); var FloorClose = document.getElementsByClassName("FloorClose")[0]; var MenuSection = document.getElementById('MenuSection'); var MenuIMGBTN = document.getElementById("MenuIMGBTN"); var MenuBTN = document.getElementById("MenuBTN"); var MenuClose = document.getElementsByClassName("MenuClose")[0]; var SaleSection = document.getElementById('SaleSection'); var SaleIMGBTN = document.getElementById("SaleIMGBTN"); var SaleBTN = document.getElementById("SaleBTN"); var SaleClose = document.getElementsByClassName("SaleClose")[0]; callingIMGBTN.onclick = function() { callingSection.style.display = "block"; } callingBTN.onclick = function() { callingSection.style.display = "block"; } callingClose.onclick = function() { callingSection.style.display = "none"; } FloorIMGBTN.onclick = function() { FloorSection.style.display = "block"; } FloorBTN.onclick = function() { FloorSection.style.display = "block"; } FloorClose.onclick = function() { FloorSection.style.display = "none"; } MenuIMGBTN.onclick = function() { MenuSection.style.display = "block"; } MenuBTN.onclick = function() { MenuSection.style.display = "block"; } MenuClose.onclick = function() { MenuSection.style.display = "none"; } SaleIMGBTN.onclick = function() { SaleSection.style.display = "block"; } SaleBTN.onclick = function() { SaleSection.style.display = "block"; } SaleClose.onclick = function() { SaleSection.style.display = "none"; } window.onclick = function(event) { if (event.target == callingSection) { callingSection.style.display = "none"; } if (event.target == FloorSection) { FloorSection.style.display = "none"; } if (event.target == MenuSection) { MenuSection.style.display = "none"; } if (event.target == SaleSection) { SaleSection.style.display = "none"; } }