
function init()
{
    if (document.forms[0].hdnAllCountiesVisible.value == 'True')
    {
        AllCountiesVisible(true);
    }
    else
    {
        AllCountiesVisible(false);
    }
}

function AppendClientState(FromLink)
{
    FromLink.href = FromLink.href + '&AllCounties=' + document.forms[0].hdnAllCountiesVisible.value;
}

function AllCountiesVisible(Show)
{
    
    var NonTop5Counties = document.getElementById('NonTop5Counties');
    var ShowCountiesLink = document.getElementById('ShowCountiesLink');
    var ShowCountiesLinkSpan = document.getElementById('ShowCountiesLinkSpan');
    var ShowCountiesImage = document.getElementById('ShowCountiesImage');
    
	if (Show)
	{
        NonTop5Counties.style.display = '';
        ShowCountiesLink.href = 'javascript:AllCountiesVisible(false);';
        ShowCountiesImage.setAttribute('title', 'Show Top 5 Counties');
        ShowCountiesLinkSpan.innerHTML = 'Show Top 5 Counties';
        ShowCountiesImage.src = '../Resources/Images/icons/minus_blue.jpg'
        document.forms[0].hdnAllCountiesVisible.value = "True";
    }
    else
    {
        NonTop5Counties.style.display = 'none';
        ShowCountiesLink.href = 'javascript:AllCountiesVisible(true);';
        ShowCountiesImage.setAttribute('title', 'Show All Counties');
        ShowCountiesLinkSpan.innerHTML = 'Show All Counties';
        ShowCountiesImage.src = '../Resources/Images/icons/plus_blue.jpg';
        document.forms[0].hdnAllCountiesVisible.value = "False";
    }
}

