﻿// JScript File
var BannerGarage = {};

BannerGarage.ShowOtherLocation = function(el) {
    var container = document.getElementById("OtherLocationPanelDiv");
    if(el && el.options[el.selectedIndex].text === "Other...") {
        container.style.display = "block";
    }
    else {
        container.style.display = "none";
    }
};

BannerGarage.ShowOtherDays = function(el) {
    var container = document.getElementById("OtherDaysPanelDiv");
    if(el && el.options[el.selectedIndex].text === "Other...") {
        container.style.display = "block";
    }
    else {
        container.style.display = "none";
    }
};