function formCheck()
{ 
	if(document.AddrBlock.Email.value == "")
	{
		alert("Please enter an email address.");
		document.AddrBlock.Email.focus();
		return false;
	}
	if(document.AddrBlock.Comments.value == "")
	{
		alert("Please make your request specific by using the Comments box.");
		document.AddrBlock.Comments.focus();
		return false;
	}
	document.AddrBlock.submit();
	return true;
}
