function CheckContact(form)
{

var txtNameError
var txtEmailError
var txtCommentsError
	
	txtNameError = "Please include your name.";
	txtEmailError = "Please fill out your email address.";
	txtCommentsError  = "Please include a question or some comments.";

	if(form.elements("name").value=="")
	{
		alert(txtNameError);
		form.name.focus();
		return false;
	}

	if(form.elements("email").value=="")
	{
		alert(txtEmailError);
		form.email.focus();
		return false;
	}

	if(form.elements("comments").value=="")
	{
		alert(txtCommentsError);
		form.comments.focus();
		return false;
	}
}

