$("#contatti").submit(function(){
	if($("#pp").attr("checked") != "checked"){
		alert("Attenzione è necessario accettare la Privacy Policy per l'invio del messaggio");
		return false;
	} else {
		return true;
	}
});

