// JavaScript Document

/* Controllo sul consenso della privacy
 * ret = 0;   Mancano i consensi al trattamento dei dati  
 * ret = 1;   Mancano i dati sulla maschera per il consenso
 * ret = 2;   Consensi dati
 */ 
function chkPrivacy(msgShow) {
	
	ret = 0;
	if (document.getElementById('cons_dati_si')) {
		if (   !document.getElementById('cons_dati_si').checked
		    || !document.getElementById('cons_mail_si').checked
		    || !document.getElementById('cons_sore_si').checked
			) {
			if (msgShow){
				alert ("Mancano i consensi al trattamento dei dati (obbligatori)");
			}
		} else {
			ret = 2;
		}
	} else {
		ret = 1;
	}
	return ret;
}
