var cancel=false;

// The following variable will return the current date.
var currentdate = new Date();

// The next section of code will be used to translate a month's number into its text equivalent.
var month=new Array(12);
month[0]="January";
month[1]="February";
month[2]="March";
month[3]="April";
month[4]="May";
month[5]="June";
month[6]="July";
month[7]="August";
month[8]="September";
month[9]="October";
month[10]="November";
month[11]="December";


// The following section will return if there is a cancellation.
if (cancel==true)
{document.write('<div class=quote><big><b><u>');
document.write('SEVERE WEATHER: All St. Andrew Youth Activities Cancelled - ' + month[currentdate.getMonth()] + ' ' + currentdate.getDate() + ', ' + currentdate.getFullYear());
document.write('</u></b></big><br>');
document.write('Due to the inclimate weather, all St. Andrew Youth Ministry activities have been cancelled for today, ' + month[currentdate.getMonth()] + ' ' + currentdate.getDate() + '.');
document.write('</div><p>');
}
