function Valid(theForm)
{
  
  if (theForm.name.value == "")
  {
	alert("Please enter your first name.");
	theForm.name.focus();
	return (false);
  }
  
  if (theForm.from.value == "")
  {
	alert("Please enter your email address.");
	theForm.from.focus();
	return (false);
  }
  
  if (theForm.customreason.value == "")
  {
	alert("Please select a reason.");
	theForm.customreason.focus();
	return (false);
  }
  
  return (true);
}