/*	EXPIRATION DATE
	Input the date you would like the message to expire, e.g. the following day.
*/

var ExpirationDate = new Date ("01/14/2011");

/*	MESSAGE
	Enter the message text here.
	- Double quotes must be preceded by a backslash.
	- Single quotes are ok as is.
*/
var Message = ("GJCTC Secondary School is closed today, January 13, 2011.");


var CurrentDate = new Date();

if (ExpirationDate < CurrentDate)
{document.write();}
else document.write("<div id=\"alert\"><p>ALERT:&nbsp; " + Message + "</p></div>");
