
function Form_Validator(theForm)
{
		
  if (theForm.Calendar.value == "")
  {
    alert("Please enter an appointment date.");
    theForm.Calendar.focus();
    return (false);
  }
	
	if (theForm.Home_phone.value == "")
  {
    alert("Please enter Home Phone.");
    theForm.Home_phone.focus();
    return (false);
  }
  
  if (theForm.work_phone.value == "")
  {
    alert("Please enter Home Phone.");
    theForm.work_phone.focus();
    return (false);
  }
  
  if (theForm.full_name.value == "")
  {
    alert("Please enter your FULL name.");
    theForm.full_name.focus();
    return (false);
  }
  return (true);
}