
function conductRestrictionSearch(address)
{
    document.getElementById('Iframe_RestrictionSearch').src = 
    'WaterRestrictionSearch.aspx?address=' + address;
    
    document.getElementById('RestrictionSearch').style.display='block';
}

function showRestrictionSearch()
{
    var RestrictionSearchDiv = document.getElementById('RestrictionSearch');
    RestrictionSearchDiv.style.display='block';
}

function hideRestrictionSearch()
{
    document.getElementById('RestrictionSearch').style.display='none';
}


