function on_load()
{
	var hrf = String(window.location.href);
	hrf = decodeURI(decodeURI(hrf));
	
	if (hrf.indexOf("agency=")!=-1)
	{
		document.getElementById("list_of_counties").style.display = "none";
		document.getElementById("online_search").style.display = "none";
		hrf = hrf.substr(hrf.indexOf("?")+1);
		var params = hrf.split("&");
		if (params.length>=2)
		{
			params[0] = params[0].split("=")[1];
			params[1] = params[1].split("=")[1];
			if (document.getElementById(params[0]))
				document.getElementById(params[0]).style.display = "";
			document.getElementById("caption").innerHTML = unescape(params[1]);
		}
	}
}

addLoadEvent(
function(){on_load()}
);