﻿    var openCheckBox
    var openHourDropDown
    var openMinDropDown
    var openAMRadioButton
    var openPMRadioButton
    var closeHourDropDown
    var closeMinDropDown
    var closeAMRadioButton
    var closePMRadioButton
    var allCheckBox 
    
function checkStatus()
{
    if (openCheckBox.checked == true)
    {
        openHourDropDown.disabled = false;
        openMinDropDown.disabled = false;
        openAMRadioButton.disabled = false;
        openPMRadioButton.disabled = false;
        closeHourDropDown.disabled = false;
        closeMinDropDown.disabled = false;
        closeAMRadioButton.disabled = false;
        closePMRadioButton.disabled = false;
        if (allCheckBox != null)
            allCheckBox.disabled = false;
    }
    else
    {
        openHourDropDown.disabled = true;
        openMinDropDown.disabled = true;
        openAMRadioButton.disabled = true;
        openPMRadioButton.disabled = true;
        closeHourDropDown.disabled = true;
        closeMinDropDown.disabled = true;
        closeAMRadioButton.disabled = true;
        closePMRadioButton.disabled = true;
        if (allCheckBox != null)
            allCheckBox.disabled = true;
    }
}

function checkOpenWeekday()
{ 
    openCheckBox = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_regularBusinessHours_openWeekdayCheckbox");
    openHourDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_regularBusinessHours_openWeekdayHourDropDownList");
    openMinDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_regularBusinessHours_openWeekdayMinDropDownList");
    openAMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_regularBusinessHours_openWeekdayAMRadio");
    openPMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_regularBusinessHours_openWeekdayPMRadio");
    closeHourDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_regularBusinessHours_closeWeekdayHourDropDownList");
    closeMinDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_regularBusinessHours_closeWeekdayMinDropDownList");
    closeAMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_regularBusinessHours_closeWeekDayAMRadioButton");
    closePMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_regularBusinessHours_closeWeekDayPMRadioButton");
    allCheckBox = null;
    
    checkStatus();
    
}

function checkOpenSat()
{ 
    openCheckBox = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_regularBusinessHours_openSatCheckbox");
    openHourDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_regularBusinessHours_openSatHourDropDownList");
    openMinDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_regularBusinessHours_openSatMinDropDownList");
    openAMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_regularBusinessHours_openSatAMRadio");
    openPMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_regularBusinessHours_openSatPMRadio");
    closeHourDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_regularBusinessHours_closeSatHourDropDownList");
    closeMinDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_regularBusinessHours_closeSatMinDropDownList");
    closeAMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_regularBusinessHours_closeSatAMRadio");
    closePMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_regularBusinessHours_closeSatPMRadio");
    allCheckBox = null;
    
    checkStatus();
}

function checkOpenSun()
{ 
    openCheckBox = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_regularBusinessHours_openSunCheckbox");
    openHourDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_regularBusinessHours_openSunHourDropDownList");
    openMinDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_regularBusinessHours_openSunMinDropDownList");
    openAMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_regularBusinessHours_openSunAMRadio");
    openPMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_regularBusinessHours_openSunPMRadio");
    closeHourDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_regularBusinessHours_closeSunHourDropDownList");
    closeMinDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_regularBusinessHours_closeSunMinDropDownList");
    closeAMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_regularBusinessHours_closeSunAMRadio");
    closePMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_regularBusinessHours_closeSunPMRadio");
    allCheckBox = null;
    
    checkStatus();
}

function checkOpenSun2()
{
    openCheckBox = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openSunCheckbox");
    openHourDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openSunHourDropDownList");
    openMinDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openSunMinDropDownList");
    openAMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openSunAMRadio");
    openPMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openSunPMRadio");
    closeHourDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_closeSunHourDropDownList");
    closeMinDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_closeSunMinDropDownList");
    closeAMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_closeSunAMRadio");
    closePMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_closeSunPMRadio");
    allCheckBox = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_allSunCheckbox");
    
    checkStatus();
}

function checkOpenMon()
{
    openCheckBox = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openMonCheckbox");
    openHourDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openMonHourDropDownList");
    openMinDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openMonMinDropDownList");
    openAMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openMonAMRadio");
    openPMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openMonPMRadio");
    closeHourDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_closeMonHourDropDownList");
    closeMinDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_closeMonMinDropDownList");
    closeAMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_closeMonAMRadio");
    closePMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_closeMonPMRadio");
    allCheckBox = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_allMonCheckbox");
    
    checkStatus();
}

function checkOpenTues()
{
    openCheckBox = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openTuesCheckbox");
    openHourDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openTuesHourDropDownList");
    openMinDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openTuesMinDropDownList");
    openAMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openTuesAMRadio");
    openPMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openTuesPMRadio");
    closeHourDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_closeTuesHourDropDownList");
    closeMinDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_closeTuesMinDropDownList");
    closeAMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_closeTuesAMRadio");
    closePMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_closeTuesPMRadio");
    allCheckBox = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_allTuesCheckbox");
    
    checkStatus();
}

function checkOpenWed()
{
    openCheckBox = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openWedCheckbox");
    openHourDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openWedHourDropDownList");
    openMinDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openWedMinDropDownList");
    openAMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openWedAMRadio");
    openPMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openWedPMRadio");
    closeHourDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_closeWedHourDropDownList");
    closeMinDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_closeWedMinDropDownList");
    closeAMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_closeWedAMRadio");
    closePMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_closeWedPMRadio");
    allCheckBox = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_allWedCheckbox");
    
    checkStatus();
}

function checkOpenThurs()
{
    openCheckBox = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openThursCheckbox");
    openHourDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openThursHourDropDownList");
    openMinDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openThursMinDropDownList");
    openAMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openThursAMRadio");
    openPMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openThursPMRadio");
    closeHourDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_closeThursHourDropDownList");
    closeMinDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_closeThursMinDropDownList");
    closeAMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_closeThursAMRadio");
    closePMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_closeThursPMRadio");
    allCheckBox = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_allThursCheckbox");
    
    checkStatus();
}

function checkOpenFri()
{
    openCheckBox = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openFriCheckbox");
    openHourDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openFriHourDropDownList");
    openMinDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openFriMinDropDownList");
    openAMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openFriAMRadio");
    openPMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openFriPMRadio");
    closeHourDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_closeFriHourDropDownList");
    closeMinDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_closeFriMinDropDownList");
    closeAMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_closeFriAMRadio");
    closePMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_closeFriPMRadio");
    allCheckBox = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_allFriCheckbox");
    
    checkStatus();
}

function checkOpenSat2()
{
    openCheckBox = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openSatCheckbox");
    openHourDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openSatHourDropDownList");
    openMinDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openSatMinDropDownList");
    openAMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openSatAMRadio");
    openPMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_openSatPMRadio");
    closeHourDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_closeSatHourDropDownList");
    closeMinDropDown = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_closeSatMinDropDownList");
    closeAMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_closeSatAMRadio");
    closePMRadioButton = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_closeSatPMRadio");
    allCheckBox = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_customBusinessHours_allSatCheckbox");
    
    checkStatus();
}

function otherBHClicked()
{
    var otherBHCheckBox = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_otherBHCheckbox");
    var otherBHTextBox = document.getElementById("ctl00_indexBody_Wizard2_ctlRegistration_1_main_otherBHTextBox");
    
    if (otherBHCheckBox.checked == true)
        otherBHTextBox.disabled = false;
    else
    {
        otherBHTextBox.disabled = true;
        otherBHTextBox.innerText = "";
    }
}<!--vicweb01-->