
// ------------------------------------------------------------------------
// To add emergency announcements to pages with the NEW TEMPLATE (3):
// 1) Put the message between the single quotes in the var line - if you use HTML code, be sure to use double quotes

// 2) Add the message to all var lines that need it
// a) to show the announcement on the EPA home page, AA home pages, and regional home pages only, add message
// to first var line only

// b) to show the announcement on the pages above PLUS other major home pages, add message
// to first and second var lines only

// c) to show the announcement on all other EPA pages, add message to all var lines

// Otherwise, leave quote marks empty

var toponly = '';
var othermajor = '';
var allother = '';

// DO NOT EDIT ANYTHING BELOW

// EPA home page, all AA home pages, and all regional home pages

 if(document.getElementById("sitewidea") && toponly != '') {
	var sitewidea = document.getElementById("sitewidea");
	sitewidea.innerHTML = toponly;
}

// Several other home pages

if(document.getElementById("sitewideb") && othermajor != '') {
	var sitewideb = document.getElementById("sitewideb");
	sitewideb.innerHTML = othermajor;
}

// ALL pages using EPA template versions 3 and later

if(document.getElementById("sitewidec") && allother != '') {
	var sitewidec = document.getElementById("sitewidec");
	sitewidec.innerHTML = allother;
}

