//MODULO NEWSLETTER___________________________________________________________________________________
function newsletter_iscrizione(){
	err='';
	with(document){
		if (!getElementById('privacy').checked){
			err="  - E'obbligatorio dare il consenso al trattamento dei dati personali\n" + err;
			getElementById('privacy').focus();
		}
		if (getElementById('email').value != getElementById('email2').value){
			err="  - Il campo INDIRIZZO E-MAIL e CONFERMA INDIRIZZO E-MAIL devono essere uguali\n" + err;
			getElementById('email').focus();
		}
		if (!isEmail(getElementById('email').value)){
			err="  - Il campo INDIRIZZO E-MAIL non e' valido\n" + err;
			getElementById('email').focus();
		}
		if (getElementById('email').value == ''){
			err="  - Il campo INDIRIZZO E-MAIL e' obbligatorio\n" + err;
			getElementById('email').focus();
		}
		if (getElementById('cognome').value == ''){
			err="  - Il campo COGNOME e' obbligatorio\n" + err;
			getElementById('cognome').focus();
		}
		if (getElementById('nome').value == ''){
			err="  - Il campo NOME e' obbligatorio\n" + err;
			getElementById('nome').focus();
		}
		if (err!=''){
			alert('Attenzione!!!Riscontrati i seguenti errori:\n\n' + err)
		}else{
			invia('newsletter_iscrizione');
		}
	}
}
//MODULO CONTATTI___________________________________________________________________________________
function contatti(){
	err='';
	with(document){
		if (!getElementById('privacy').checked){
			err="  - E'obbligatorio dare il consenso al trattamento dei dati personali\n" + err;
			getElementById('privacy').focus();
		}
		if (getElementById('testo').value == ''){
			err="  - Il campo TESTO e' obbligatorio\n" + err;
			getElementById('testo').focus();
		}
		if (getElementById('email').value != getElementById('email2').value){
			err="  - Il campo INDIRIZZO E-MAIL e CONFERMA INDIRIZZO E-MAIL devono essere uguali\n" + err;
			getElementById('email').focus();
		}
		if (!isEmail(getElementById('email').value)){
			err="  - Il campo INDIRIZZO E-MAIL non e' valido\n" + err;
			getElementById('email').focus();
		}
		if (getElementById('email').value == ''){
			err="  - Il campo INDIRIZZO E-MAIL e' obbligatorio\n" + err;
			getElementById('email').focus();
		}
		if (err!=''){
			alert('Attenzione!!!Riscontrati i seguenti errori:\n\n' + err)
		}else{
			invia('contatti');
		}
	}
}
//MODULO ISCRIZIONE___________________________________________________________________________________
function iscrizione(){
	err='';
	with(document){
		if (!getElementById('privacy').checked){
			err="  - E'obbligatorio dare il consenso al trattamento dei dati personali\n" + err;
			getElementById('privacy').focus();
		}
		if (getElementById('tipo').value == ''){
			err="  - Il campo SETTORE DI APPARTENENZA e' obbligatorio\n" + err;
			getElementById('tipo').focus();
		}
		if (getElementById('utente_field').value == ''){
			err="  - Il campo USERNAME e' obbligatorio\n" + err;
			getElementById('utente_field').focus();
		}
		if (getElementById('email').value != getElementById('email2').value){
			err="  - Il campo INDIRIZZO E-MAIL e CONFERMA INDIRIZZO E-MAIL devono essere uguali\n" + err;
			getElementById('email').focus();
		}
		if (!isEmail(getElementById('email').value)){
			err="  - Il campo INDIRIZZO E-MAIL non e' valido\n" + err;
			getElementById('email').focus();
		}
		if (getElementById('email').value == ''){
			err="  - Il campo INDIRIZZO E-MAIL e' obbligatorio\n" + err;
			getElementById('email').focus();
		}
		if (getElementById('cognome').value == ''){
			err="  - Il campo COGNOME e' obbligatorio\n" + err;
			getElementById('cognome').focus();
		}
		if (getElementById('nome').value == ''){
			err="  - Il campo NOME e' obbligatorio\n" + err;
			getElementById('nome').focus();
		}
		if (err!=''){
			alert('Attenzione!!!Riscontrati i seguenti errori:\n\n' + err)
		}else{
			invia('iscrizione');
		}
	}
}
//ENTRY___________________________________________________________________________________________
function entry(){
	invia('modulo_entry');
}
//MODULO ISCRIZIONE___________________________________________________________________________________
function partecipa(){
	err='';
	with(document){
		if (!getElementById('privacy').checked){
			err="  - E'obbligatorio dare il consenso al trattamento dei dati personali\n" + err;
			getElementById('privacy').focus();
		}
		if (getElementById('testo').value == ''){
			err="  - Il campo TESTO e' obbligatorio\n" + err;
			getElementById('testo').focus();
		}
		if (getElementById('programma').value == ''){
			err="  - Il campo PROGRAMMA e' obbligatorio\n" + err;
			getElementById('programma').focus();
		}
		if (err!=''){
			alert('Attenzione!!!Riscontrati i seguenti errori:\n\n' + err)
		}else{
			invia('partecipa');
		}
	}
}
//MODULO SCHEDE___________________________________________________________________________________
function schede(){
	err='';
	with(document){
		if (getElementById('testo').value == ''){
			err="  - Il campo TESTO e' obbligatorio\n" + err;
			getElementById('testo').focus();
		}
		if (getElementById('nome').value == ''){
			err="  - Il campo NOME E COGNOME e' obbligatorio\n" + err;
			getElementById('nome').focus();
		}
	}
	if (err!=''){
		alert('Attenzione!!!Riscontrati i seguenti errori:\n\n' + err)
	}else{
		if (confirm('Sei sicuro di voler inviare il tuo commento alla redazione?\n\n - Premere OK per inviare\n - Premere ANNULLA per non eseguire nessuna azione')){
			invia('form_commento');
		}
	}
}
