
function Form_Validator(theForm)
{
  if (theForm.owner.value == "")
  {
    alert("Please provide your name.");
    theForm.owner.focus();
    return (false);
  }
  if (theForm.address.value == "")
  {
    alert("Please enter your address.");
    theForm.address.focus();
    return (false);
  }
  if (theForm.cell.value == "")
  {
    alert("Please enter your cell phone number.");
    theForm.cell.focus();
    return (false);
  }
  if (theForm.email.value == "")
  {
    alert("Please enter your email address.");
    theForm.email.focus();
    return (false);
  }
  if (theForm.year.value == "")
  {
    alert("Please provide your vehicle's year.");
    theForm.year.focus();
    return (false);
  }
  if (theForm.make.value == "")
  {
    alert("Please provide your vehicle's make.");
    theForm.make.focus();
    return (false);
  }
  if (theForm.model.value == "")
  {
    alert("Please provide your vehicle's model.");
    theForm.model.focus();
    return (false);
  }
  if (theForm.license.value == "")
  {
    alert("Please provide your vehicle's license.");
    theForm.license.focus();
    return (false);
  }
  if (theForm.vin.value == "")
  {
    alert("Please provide your vehicle's VIN#.");
    theForm.vin.focus();
    return (false);
  }
  if (!theForm.windows.checked)
  {
    alert("Please acknowledge window liability by marking the checkbox.");
    theForm.windows.focus();
    return (false);
  }
  if (!theForm.pickup.checked)
  {
    alert("Please acknowledge our storage fees by marking the checkbox.");
    theForm.pickup.focus();
    return (false);
  }
  if (theForm.signature.value == "")
  {
    alert("Please sign.");
    theForm.signature.focus();
    return (false);
  }
  if (theForm.signature2.value == "")
  {
    alert("Please sign.");
    theForm.signature2.focus();
    return (false);
  } 
  return (true);
}