/* Shows or hides the named object (objectID). In this case, the map.*/

function showDiv(objectID) {
	var theElementStyle = document.getElementById(objectID);
	
	if(theElementStyle.style.display == "none")
		{
			theElementStyle.style.display = "block";	
		}
	else
		{
			theElementStyle.style.display = "none";
		}
}

