function validate()
	{
	
	if (document.theForm.phone.value == "")
		{
		alert("A phone number is required to submit a comment.");
		return false;
		}
		
	else if (document.theForm.email.value == "")
		{
		alert("An email address is required to submit a comment.");
		return false;
		}
		
}