﻿function Contact_HearDDL_Changed(HearDropDown, OtherP)
{    
        
    var OtherP = document.getElementById(OtherP);
    OtherP.style.display = "none";
    
        
    var dropdownIndex = document.getElementById(HearDropDown).selectedIndex;
    var dropdownValue = document.getElementById(HearDropDown)[dropdownIndex].value;
        
    if (dropdownValue == "Other")
    {
         OtherP.style.display = "block";
    }

}

function WebHosting_Popup_PackageDDL_Changed(PackageDropDown, SSLDiv, SSLCheck)
{

    var SSLDiv = document.getElementById(SSLDiv);
    
    var dropdownIndex = document.getElementById(PackageDropDown).selectedIndex;
    var dropdownValue = document.getElementById(PackageDropDown)[dropdownIndex].value;
        
    if (dropdownValue == "Windows Premium Business")
    {
         SSLDiv.style.display = "block";
    }
    else
    {
        var SSLCheck = document.getElementById(SSLCheck);
        SSLCheck.checked = false;
        SSLDiv.style.display = "none";
    }
    
}