function alert(){

showalert = 1;
header = 'TUESDAY, AUGUST 3, 2010';
line1 = 'TONIGHT'S TRYOUTS FOR U17 BOYS HAVE BEEN MOVED';
line2 = 'NEW DATE AUGUST 5th 7:30-9pm AT MCMURRAY';
line3 = '';

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/alert2.jpg);background-color:#5765C0;color:white;padding:15px 10px 15px 10px;font-weight:bold">' + '<span style="font-size:28px">' + 'ALERT' + '</span><br><span style="font-size:18px">' + header + '</span><span style="font-size:12px;">' + message + '</span></div>';
	}
return s;
}

