<!-- this is the display_announcement function used for the What's Up Message and Weather Alerts on the various view pages -->

function display_announcement (message, headline) {
	var announcement = window.open("", "announcement", "scrollbars,height=300,width=300");
	announcement.document.write("<HTML><HEAD><LINK HREF=\"https://www.usd.edu/include/styles.css\" REL=\"stylesheet\" TYPE=\"text/css\"></HEAD><BODY>");
	announcement.document.write("<SPAN CLASS=\"textBlackBold\">" + headline + "</SPAN><P><SPAN CLASS=\"textBlack\">" + message + "<HR SIZE=\"1\" NOSHADE><h3>Resources</h3><ul><li><A HREF=\"http://www.usd.edu/weather/\" TARGET=\"_blank\" CLASS=\"urlRedBold\">USD Weather Policy</A></li><li><A HREF=\"http://www.usd.edu/publicsafety/\" TARGET=\"_blank\" CLASS=\"urlRedBold\">Public Safety</A></li><li><A HREF=\"http://www.usd.edu/urelations/\" TARGET=\"_blank\" CLASS=\"urlRedBold\">University Relations</A></li></SPAN><P><br /><A HREF=\"javascript: self.close();\" CLASS=\"urlRedBold\">close</A>");
	announcement.document.write("</BODY></HTML>");
	announcement.focus();
}

