function alert(){

showalert = 0;
header = 'Wednesday, June 15';
line1 = 'Due to rain, the Specialty Camp is moved to 875 Orchard Avenue.';
line2 = 'Campers should have flat soccer or tennis shoes';
line3 = 'Tomorrow we are back at McMurray';

s = "";
if (showalert) {
	message = '<br>&bull; ' + line1;
	 if (line2 != '') {
	 message += '<br>&bull; ' + line2;
	 }
	 if (line3 != '') {
	 message += '<br>&bull; ' + line3;
	 }
	s = '<div style="width:516px;background-image:url(images/alertx.jpg);background-color:#FF0000;color:white;padding:15px 10px 15px 10px;margin-bottom:10px;font-weight:bold">' + '<span style="font-size:28px">' + 'ALERT' + '</span><br><span style="font-size:18px">' + header + '</span><span style="font-size:16px;">' + message + '</span></div>';
	}
return s;
}
