﻿function Validator(theForm)
{
  if (theForm.nome.value == "")
  {
    alert("Il nome e' indispensabile per contattarvi, compilate il relativo campo.");
    theForm.nome.focus();
    return (false);
  }
if (theForm.telefono.value == "")
  {
    alert("Il telefono e' un dato indispensabile, compilare il relativo campo e verificare che non ci siano errori.");
    theForm.telefono.focus();
    return (false);
  }
  
if (theForm.citta.value == "")
  {
    alert("La citta' e' un dato indispensabile, compilare il relativo campo e verificare che non ci siano errori.");
    theForm.citta.focus();
    return (false);
  }
  
if (theForm.email.value.indexOf("@") == -1 || theForm.email.value.indexOf(".") == -1)
{
	alert("Inserire un indirizzo di posta elettronica valido");
	theForm.email.focus();
	return (false);
}
  
if (theForm.emaildue.value.indexOf("@") == -1 || theForm.emaildue.value == "")

  {
    alert("Reinserire email e verificare che non ci siano errori.");
    theForm.emaildue.focus();
    return (false);
  }  

if (theForm.privacy.checked == false)
  {
    alert("I dati riportati in questo form saranno utilizzati esclusivamente da   MH srl per dare seguito alla vostra richiesta informazioni. Se desiderate inoltrare la vostra richiesta, siete pregati di acconsentire all'utilizzo dei vostri dati personali, grazie.");
    theForm.privacy.focus();
    return (false);
  } 
  
 //if (theForm.prodotto.selectedIndex == 0)
//  {
//    alert("Selezionare il tipo di prodotto.");
//    theForm.prodotto.focus();
//    return (false);
//  }
  
    return (true);


//fine


}





