//HolidayAndCarlScripts.js


//determine whether or not to write messages based on these booleans
//and what messages to write

//Web Holiday
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.";

//Carl Message
var isCarlMessageOn = new Boolean(false); //off
//var isCarlMessageOn = new Boolean(true); //on

var CarlMessage = "If you are a paperless customer seeking your 2009 Tax Filing Information (1098 and 1099 INT Statements), please be aware that these statements will be ready for paperless subscribers viewing no later than Friday Jan 8, 2010.  If you would like to become paperless, please go to the Add/Manage Alerts to subscribe for this service. All other 1098 and 1099 INT statements will be mailed no later than January 31, 2010 to the mailing address on record with us as of December 31, 2009.  If you would like a duplicate statement or would like to discuss revisions to the statement mailed to you, please e-mail us after logging into the web site.";

//var CarlMessage = "Please be aware that from approximately 8:00 am EST on Jan 1st to 8:00 pm on Jan 1st 2010, our site will be undergoing system maintenance and may not be available. If you plan on making your monthly payment during this time, please use our phone option for payments by dialing, 877-PAY-EASE.";
//var CarlMessage = "Data presented on this site is accurate as of November 14, 2009 5 p.m.  All information will be updated tomorrow after 8:00 a.m. EST.  Thank you for your patience.";
//var CarlMessage = "Please be aware that 2007 1098 year-end information will be mailed on or before January 31, 2008. Please allow 7 to 10 days for delivery.<BR><BR>2007 1098 year-end information will be available after January 4, 2008.";

//var CarlMessage = "Please be aware that 2007 1098 year-end information will be mailed on or before January 31, 2008. Please allow 7 to 10 days for delivery.";

//"The system will be down for maintenance until later today.  Thank you for your patience.";
//Data presented on this site is accurate as of December 2, 2005.  All information will be updated today after 12:00 p.m. EST.  Thank you for your patience

//below are the methods that write the messages, where appropriate.






function writeWebHolidayMessage() {
	if(isWebHolidayMessageOn == true) {
		document.write("<B>" + WebHolidayMessage + "</B><BR><BR>");
	}
}

//carl message
function writeCarlMessage() {
	if(isCarlMessageOn == true) {
		document.write('<SPAN STYLE="font-size:12px; font-weight:bold; color: #FF0000;">Attention:</SPAN>&nbsp;&nbsp;' + CarlMessage + '<BR><BR>');
	}
}

