//  Common JavaScript for Web Site

// ***************************************
// showhideinfo Shows or hides div based on id of that div.
// ***************************************

function showhideinfo(id){

//  get the current display status for the div.

	var display = document.getElementById(id).style.display;

//  if div is not displayed, display it.  else, hide it.
	if (display != "block"){
		document.getElementById(id).style.display = "block";
	} 
	else {
		document.getElementById(id).style.display = "none";
	}
    
}

