function showMsg() {

var page = "<html><head><title>NOTICE</title></head><body>"
	page += "</head><body>"
	page += "<br><div align='center'>"
	page += "<table border='1' cellpadding='5' cellspacing='5'>"
	page += "<tr><td bgcolor='#333366'><p><b style='color: white; font-size: 14px; font-family: arial, helvetica; font-weight: bold'>NOTICE:</b></td></tr>"
	page += "<tr><td><p style='font-size: 12px; font-family: arial, helvetica'>"
	
	
	page += "Beginning December 2, a <font color='red'>NEW Signature style graphic identity</font> will replace the current UW Signature style. You may want to postpone your order for Signature style stationery until this time or, if your need is urgent, order a reduced quantity of the current style.</p><p style='font-size: 12px; font-family: arial, helvetica'>The Guide to University of Washington Visual Identity Standards will be available on the University Relations web site beginning December 2. <a href='http://www.washington.edu/univrel/'>http://www.washington.edu/univrel/</a></p>" 
	page += "</p></td></tr></table><form><input type='button' value='OK' onClick='window.close()'></form></div></body></html>"
	
	thisWin=window.open("","newAnswer","toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,width=410,height=350");
thisWin.document.write(page);
thisWin.document.close();

}