//// SET EMERGENCY NOTICE ////

// This could be placed on an outside server so that in the event that
// we could not get to the church, we could still make visible an emergency notice on the main website.

function setEmergencyNotice() {
	
	var NoticeOnOff = false; // true = On, false = Off
	
	var WeatherAdvisory = "<h6>Weather Advisory</h6><p>This is a weather advisory!<p>";
	var Emergency = "This is an emergency!";

	if (NoticeOnOff == true) {
		
		document.getElementById('emergency_notice').style.display = "block"; // Make notice div visible
		document.getElementById('emergency_notice_content').innerHTML = WeatherAdvisory; // Change to appropriate variable (defined above)

	}
	
}
