function checkcontatti ( form )
{
  if (form.nome.value == "") {
    alert( "Campo nome e cognome obbligatorio" );
    form.nome.focus();
    return false ;
  }
  if (form.email.value == "") {
    alert( "Campo email obbligatorio" );
    form.email.focus();
    return false ;
  }
  if (form.richiesta.value == "") {
    alert( "Campo richiesta obbligatorio" );
    form.richiesta.focus();
    return false ;
  }
if ((form.checkbox.checked) == false)
	{
	alert("Spiacenti: in caso di mancata autorizzazione, non possiamo ricevere il messaggio (legge 196/2003)")
	return (false);
	}
  return true ;
}
