// Almond Board Scripts 

// the following are used to show and hide the "Choose site" dropdown area
function showDiv(divID) {
	// show the div
	var divState 
	var divState = document.getElementById(divID).style.display;
	
	if (divState == "none") {
		document.getElementById(divID).style.display=""; }
	else {
		document.getElementById(divID).style.display="none"; }
}

function hideDiv(divID) {
	// hide the div
	document.getElementById(divID).style.display="none";
}

