
function chk_privacy(){
    with(document.f_contatti){
        if ( privacy[0].checked==false && privacy[1].checked==false ) {
          alert ("Autorizzazione al trattamento dei dati personali ai sensi del d.lgs.n.196/2003");
          privacy[0].focus();
          return false;
        }

        if ( privacy[1].checked==true) {
          alert ("Selezionare Accetto per proseguire");
          privacy[0].focus();
          return false;
        }
    }
    return true;
}



function chk_contatti(){
	with(document.f_contatti){
		if(
		 chk_txt(nome,"Inserire il nome") &&
		 chk_txt(cognome,"Inserire il cognome") &&
		 chk_email(email,"Email errata o mancante") &&
 		 chk_select(come,"Inserire come hai conosciuto Eurisko Italia") &&
		 chk_txt(messaggio,"Inserire il messaggio") &&
		 chk_privacy()
)
			return true;
	}
	return false;
}


