
	/*
		Enter scheduled maintenance times below as New York server times

		Noon must be entered as 12:00pm !!

		Syntax is:

		  new ScheduleMaintenance(daysToShowMessage, startDateAndTime, endDateAndTime);

	*/

	//new ScheduleMaintenance(1, "August 1 2008 8:00pm", "August 1 2008 10:00pm");
	//new ScheduleMaintenance(1, "August 2 2008 10:00am", "August 2 2008 12:00pm");
	//new ScheduleMaintenance(1, "August 9 2008 7:30am", "August 9 2008 12:00pm");
	//new ScheduleMaintenance(1, "August 23 2008 7:30am", "August 23 2008 12:00pm");
	//new ScheduleMaintenance(1, "September 6 2008 7:30am", "September 20 2008 1:30pm");
	//new ScheduleMaintenance(1, "September 20 2008 7:30am", "September 20 2008 12:00pm");
	//new ScheduleMaintenance(1, "October 4 2008 7:30am", "October 4 2008 1:00pm");
	//new ScheduleMaintenance(1, "October 18 2008 7:30am", "October 18 2008 12:00pm");
	//new ScheduleMaintenance(1, "November 1 2008 7:30am", "November 1 2008 2:00pm");
	//new ScheduleMaintenance(1, "November 15 2008 7:30am", "November 15 2008  5:00pm");
	//new ScheduleMaintenance(1, "November 29 2008 7:30am", "November 29 2008 12:00pm");
	//new ScheduleMaintenance(1, "December 13 2008 7:30am", "December 13 2008 12:30pm");
	//new ScheduleMaintenance(1, "December 27 2008 7:30am", "December 27 2008 12:30pm");
	//new ScheduleMaintenance(1, "January  10 2009 7:30am", "January  10 2009 12:30pm");
	//new ScheduleMaintenance(2, "January  17 2009 7:00am", "January  17 2009  11:59pm");
	//new ScheduleMaintenance(1, "January  24 2009 6:30am", "January  24 2009  11:30am");
	//new ScheduleMaintenance(1, "February  7 2009 6:30am", "February 7 2009 6:00pm");
	//new ScheduleMaintenance(1, "February  21 2009 6:30am", "February 21 2009 12:30pm");

	new ScheduleMaintenance(1, "February  28 2009 6:30am", "February 28 2009 12:30pm");
	new ScheduleMaintenance(1, "March 7 2009 6:30am", "March 7 2009 11:30am");





	/*
		Text of these messages can be changed as needed, but:

		- Keep the message numbers as 5, 6 and 7
		- Don't delete any of the three
		- Don't add any more messages, eg. 8, 9, 10
		- End each line with the continuation character \
		- Don't include any double-quotes
		- End each statement (not each code line) with a ;

		#SD is a placeholder for the start date
		#ST is a placeholder for the start time
		#ET is a placeholder for the end time
		#PL is a placeholder for the program level: Alpha, Training or Development

	*/

	// ...one day leading up to scheduled maintenance, ANNOUNCE & ALLOW logging in with this:
	// (show this first time client logs in)

	messages[5] = "Media Monitors will be performing routine maintenance this #SD.\
					<p>All reports will be off-line between #ST and #ET Eastern.\
					<p>We apologize in advance for any inconvenience. \
					Thank you for your continued support of MediaMonitors.com.";

	// ...day of scheduled maintenance, ANNOUNCE & ALLOW logging in with this:
	// (show this each time client logs in)

	messages[6] = "Media Monitors will be performing routine maintenance <b>later today</b>.\
					<p>All reports will be off-line between #ST and #ET Eastern.\
					<p>We apologize in advance for any inconvenience. \
					Thank you for your continued support of MediaMonitors.com.";

	// ...during scheduled maintenance, DISALLOW LOGIN with this:
	// (show this each time client attempts to log in)

	messages[7] = "Media Monitors is currently performing routine maintenance.\
					<p><b>All reports will be off-line until #ET Eastern.</b>\
					<p>We apologize for any inconvenience. \
					Thank you for your continued support of MediaMonitors.com.";

