function showAlertMessage() {
	var AlertMessage = true;
	var AlertMessage0 = false;
	
	var now = new Date();
	
	var mnow = now.getTime();
	// "mnow" is the CURRENT year/month/date/hour/minutes/seconds

	var chgDayStart = new Date("08 June 2009 00:00:00");
	var chgDayStop = new Date("22 June 2009 00:00:00");
	if (mnow > chgDayStart.getTime() && mnow < chgDayStop.getTime()) {
		AlertMessage0 = true;
		AlertMessage = false;
	}
	
	// default graphic
	if (AlertMessage) {
		out = "";
	}
	// time sensitive graphic
	if (AlertMessage0) {
		out = "<div style=\"color:#c00;font-size:11px;padding:5px;\">Online Banking System Notice. <a href=\"../help/idcheck_faq.aspx\">Click here</a> for information.</div>";
	}
	if (AlertMessage || AlertMessage0 ) {
		document.write(out);
	}
}