// JavaScript Document
function contatti_ok() {
	if (document.form1.nome_cont.value == 0) {
	alert('ATTENZIONE !!! - E necessario compilare il campo nome.')
	return false
	}
	else if (document.form1.cognome_cont.value == 0) {
	alert('ATTENZIONE !!! - E necessario compilare il campo cognome.')
	return false
	}
	else if (document.form1.tel_cont.value == 0) {
	alert('ATTENZIONE !!! - E necessario compilare il campo telefono.')
	return false
	}
	else if (document.form1.citta_cont.value == 0) {
	alert('ATTENZIONE !!! - E necessario compilare il campo cittą.')
	return false
	}
	else if (document.form1.mail_cont.value == 0) {
	alert('ATTENZIONE !!! - E necessario compilare il campo email.')
	return false
	}
	var pos = 0;
	var c=0;
	var i = document.form1.mail_cont.value;
	pos = i.indexOf("@");
	if (pos  =='-1') {
	alert('ATTENZIONE !!! - La mail inserita non e\' corretta.')
	return false
	}
	if (!document.form1.privacy.checked) {
	alert('ATTENZIONE !!! - E necessario accettare l\'informativa sulla privacy.')
	return false
	}
}

