function valcontact(theForm)
{
	//Contact form validation:
  if (theForm.name.value == "")
  {
    alert("Please enter your name.");
    theForm.name.focus();
    return (false);
  }
  
  if (theForm.email.value == "")
  {
    alert("Please enter your Email address");
    theForm.email.focus();
    return (false);
  }
  if (theForm.phone.value == "")
  {
    alert("Please enter your phone number");
    theForm.phone.focus();
    return (false);
  }

  if (theForm.comments.value == "")
  {
    alert("Please enter comments.");
    theForm.comments.focus();
    return (false);
  }
}
