/* This program validates the contact form */

/* verify a form */
function formVerify(contactform)
{
	/* check that the user entered comments or questions */
	if (contactform.comments.value =="")
	{
		window.alert("Please enter your comments or questions.");
		contactform.comments.focus();
		contactform.comments.select();
		return false;
	}

	else
		return true;
}
