function controllaPrivacy() {
	var goHome;
	var frmPrivacy = document.getElementById("frmPrivacy");
	var cbxInfCliente = document.getElementById("cbxInfCliente");
	var cbxInfSkillBox = document.getElementById("cbxInfSkillBox");
	var cbxInfVideoconferenza = document.getElementById("cbxInfVideoconferenza");
	
	if (richiediPrivacy && ((!cbxInfCliente.checked) || (!cbxInfSkillBox.checked))) {
		alert("Per poter accedere all'area formazione, è necessario dare il proprio consenso sia alle condizioni di Helvetia che di Skill-box");
		goHome = false;
	} else if (richiediPrivacyVC && (!cbxInfVideoconferenza.checked)) {
		goHome = confirm('Non dando il proprio consenso per la Videoconferenza, non si potrà partecipare ai corsi erogati in questa modalità. Continuare?');
	} else {
		goHome = true;
	}
	
	if (goHome) {
		frmPrivacy.submit();
		 
		return true;
	} else {
		return false;
	}
}
