//<!--
function checkAdminMailshot()
{
	var errorFlag = 0;
	var mailSubject = escape(document.getElementById('subject').value)
	var mailComment = escape(document.getElementById('comment').value)
	if (mailSubject.length < 1)
	{
		document.getElementById('messageDisplayBox').innerHTML = "You must enter a subject and comment!";
		errorFlag = 1;
	}
	if (mailComment.length < 1)
	{
		document.getElementById('messageDisplayBox').innerHTML = "You must enter a subject and comment!";
		errorFlag = 1;
	}
	if (errorFlag == 1)
	{
		return false;
	}
}
//-->