//HolidayAndCarlScripts.js
var isWebHolidayMessageOn = new Boolean(false); //off
//var isWebHolidayMessageOn = new Boolean(true); //on
var WebHolidayMessage = "<BR><BR>" + 
		"In observance of Christmas, our offices will be <br>" +
		"closed on Friday, December 25, 2009.<br>" +
		"Please feel free to take advantage of our Web site, and if<br>" +
		"you need additional assistance, we will be happy to help after the holiday.";

var isCarlMessageOn = new Boolean(false); //off
//var isCarlMessageOn = new Boolean(true); //on

var CarlMessage = "We are currently updating our payoff system and expect it to be available today at 12:00 pm EST.  We apologize for any inconvenience this may cause and ask you to attempt your request later.";

function writeWebHolidayMessage() {
	if(isWebHolidayMessageOn == true) {
		document.write("<B>" + WebHolidayMessage + "</B><BR><BR>");
	}
}

function writeCarlMessage() {
	if(isCarlMessageOn == true) {
		document.write('<SPAN STYLE="font-size:12px; font-weight:bold; color: #FF0000;">Attention:</SPAN>&nbsp;&nbsp;' + CarlMessage + '<BR><BR>');
	}
}

