// JavaScript Document
function popleft() {
	var strOutput      = "";   //String to be written to page
	strOutput += "<p><span class=\"bluebd\">Friday Night Raffle</span> - tix on sale 6:30, draw from 7:15. Over 30 meat, chicken and fruit 'n veg trays to be won.</p>";
	strOutput += "<br />";
	strOutput += "<p><span class=\"bluebd\">Sunday MEGA MEAT Raffle</span> - tix on sale 2:45, draw from 3:30. 25 large meat trays to be won.  </p>";
	strOutput += "<br />";

    strOutput += "<p><a class=\"hilite\" href=\"thisweek.html\">more What's On This Week</a></p>";
	strOutput += "<h2>Coming Soon</h2>";
	strOutput += "<p><span class=\"bluebd\">SUN Feb 19 MEGA MEAT Raffle</span> - tix on sale 2:45, draw from 3:30. 25 large meat trays to be won.  </p>";
	strOutput += "<br />";

	strOutput += "<p><a class=\"hilite\" href=\"coming-soon.html\">more Upcoming Events</a></p>";
	document.write(strOutput);
    document.close();
}
