var writeAlert = false; // true to display an alert message across all pages; false, otherwise
var alertMsg = 'MyDietAnalysis will be unavailable Saturday, January 7, 9:00 AM to 10:00 AM EST (US and Canada) / 14:00 to 15:00 GMT due to a scheduled upgrade. We apologize for any inconvenience.';
var htmlBuffer = "";

function writeAlertMsg()
{
	if (writeAlert)
	{
		htmlBuffer = '<div align="center" style="margin-top: 10px; margin-bottom: 10px;">\n';
		htmlBuffer += '<div class="alertMsg"><strong>IMPORTANT NOTICE</strong><br />' + alertMsg + '</div>\n';
		htmlBuffer += '</div>\n';
		document.write(htmlBuffer);
	}
} 
