// JavaScript Document

function announcements_marquee()
{
	if(document.getElementById)
	{
		var marquee = document.getElementById("announcements");
		
		var msg = new String("Check the updated rules for Environmental. Be sure to check the schedule for updates. We look forward to seeing you at this year's SESC Conference.");
		
		marquee.innerHTML = msg;
		marquee.style.clear = "both";
		marquee.style.fontWeight = "bold";
		marquee.style.backgroundColor = "#03244C";
		marquee.style.width = "975px";
		marquee.style.height = "20px";
		marquee.style.color = "#FFFFFF";		
	}
}
function MM_openBrWindow(theURL,winName,features)
{ //v2.0
  window.open(theURL,winName,features);
}


if(window.addEventListener)
{
	window.addEventListener("load", announcements_marquee, false);
}
else
{
	window.attachEvent("load", announcements_marquee);
}