function hideAdvisory(county)
{
	/* Establish the Div layers to use */
	var advisoryLinkDiv = "advisory_link_" + county;
	var advisoryTextDiv = "advisory_text_" + county;
	
	/* Hide the text and switch the link */
	document.getElementById(advisoryLinkDiv).innerHTML = "<a href=\"javascript:showAdvisory('" + county + "')\">Show Advisory Details";
	document.getElementById(advisoryTextDiv).style.display = "none";
}

function showAdvisory(county)
{
	/* Establish the Div layers to use */
	var advisoryLinkDiv = "advisory_link_" + county;
	var advisoryTextDiv = "advisory_text_" + county;
	
	/* Show the text and switch the link */
	document.getElementById(advisoryLinkDiv).innerHTML = "<a href=\"javascript:hideAdvisory('" + county + "')\">Hide Advisory Details";
	document.getElementById(advisoryTextDiv).style.display = "block";
	document.getElementById(advisoryTextDiv).style.overflow = "auto";
	document.getElementById(advisoryTextDiv).style.height = "175px";
	document.getElementById(advisoryTextDiv).style.width = "355px";
	document.getElementById(advisoryTextDiv).style.border = "1px solid #cccccc";
}

function popupAdvisoryShow(divID)
{
	//Element.addClassName('contentmain', 'blurbg');
	document.getElementById(divID).style.display = 'block';
}

function popupAdvisoryHide(divID)
{
	//Element.removeClassName('contentmain', 'blurbg');
	document.getElementById(divID).style.display = 'none';
	//window.location.href = '/public.ejs?command=PublicWeatherDisplay';
}