function Validator(theForm)
{

 if (theForm.Azienda.value =="")
  {
    alert("Inserire un valore per il campo \"Azienda\".");
    theForm.Azienda.focus();
    return (false);
  }
  if (theForm.NomeContatto.value =="")
  {
    alert("Inserire un valore per il campo \"NomeContatto\".");
    theForm.NomeContatto.focus();
    return (false);
  }
  if (theForm.CognomeContatto.value =="")
  {
    alert("Inserire un valore per il campo \"CognomeContatto\".");
    theForm.CognomeContatto.focus();
    return (false);
  }
  if (theForm.Citta.value =="")
  {
    alert("Inserire un valore per il campo \"Citta\".");
    theForm.Citta.focus();
    return (false);
  }
  if (theForm.Indirizzo.value =="")
  {
    alert("Inserire un valore per il campo \"Indirizzo\".");
    theForm.Indirizzo.focus();
    return (false);
  }
  if (theForm.Provincia.selectedIndex ==0)
  {
    alert("La prima opzione di \"provincia\" non è una selezione valida. Scegliere un'altra opzione.");
    theForm.Provincia.focus();
    return (false);
  }
  if (theForm.Email.value =="")
  {
    alert("Inserire un valore per il campo \"email\".");
    theForm.Email.focus();
    return (false);
  }
  if (theForm.Tel.value =="")
  {
    alert("Inserire un valore per il campo \"Telefono\".");
    theForm.Tel.focus();
    return (false);
  }
   if (theForm.Caratteristiche.value =="")
  {
    alert("Inserire le \"Caratteristiche\".");
    theForm.Caratteristiche.focus();
    return (false);
  }
  
  return (true);
}