//

function Form_Validator(theForm){
  if (theForm.a5Qty.value == "")
  {
    alert("Specificare \"Quantità\"");
    theForm.a5Qty.focus();
    return (false);
  }

//  if (theForm.a6Prod.selectedIndex < 1)
  if (theForm.a6Prod.value < 1)
  {
    alert("Selezionare \"Prodotto\"");
    theForm.a6Prod.focus();
    return (false);
  }

  if (theForm.a9Payment.value == "")
  {
    alert("Specificare termini di  \"Pagamento\"");
    theForm.a9Payment.focus();
    return (false);
  }

  if (theForm.a1Org.value == "")
  {
    alert("Specificare \"Azienda\"");
    theForm.a1Org.focus();
    return (false);
  }

  if (theForm.a2FName.value == "")
  {
    alert("Specificare \"Nome\"");
    theForm.a2FName.focus();
    return (false);
  }

  if (theForm.a3LName.value == "")
  {
    alert("Specificare \"Cognome\"");
    theForm.a3LName.focus();
    return (false);
  }

  if (theForm.a4Vox.value == "")
  {
    alert("Specificare \"Telefono\"");
    theForm.a4Vox.focus();
    return (false);
  }

  return (true);
}

