function Show(Click_Menu){

// Function  will swap the display/no display for
// all content within span tags
	if (document.getElementById(Click_Menu).style.display == "none"){
	document.getElementById(Click_Menu).style.display = "";
	}else{
		document.getElementById(Click_Menu).style.display = "none";
	}
}
  