function controlloInfo(){
	//Controllo nome e cognome
	if (document.getElementById("nome").value != ''){
		//controllo email
		var filter=/^[\'+\\./0-9A-Z^_\`a-z{|}~\-]+@[a-zA-Z0-9_\-]+(\.[a-zA-Z0-9_\-]+){1,3}$/i;
		if (filter.test(document.getElementById("email").value)){
			//controllo messaggio
			if (document.getElementById("mess").value != ''){
				if (document.getElementById("privacy").checked){
					return true;
				}else {alert("Devi accettare le politiche sulla privacy per poter richiedere informazioni"); return false;}
			}
			alert("devi prima scrivere un messaggio per poterlo inviare");
			return false;
		}
		alert("Indirizzo email non valido");
		return false; 
		
	}
	alert("Compilare tutti i campi obbligatori");
	return false

}
function controlloContact(){
	var a;
	//Controllo nome
	if (document.getElementById("nome").value != ''){
		//controllo cognome
		if (document.getElementById("cognome").value != ''){
			//controllo email				
			var filter=/^[\'+\\./0-9A-Z^_\`a-z{|}~\-]+@[a-zA-Z0-9_\-]+(\.[a-zA-Z0-9_\-]+){1,3}$/i;
			if (filter.test(document.getElementById("email").value)) {
				//controllo messaggio
				a = document.getElementById("mess").value;
				if (a != ''){
					//controllo privacy
					if (document.getElementById("privacy").checked)
						return true;
					else {alert("Devi accettare le politiche sulla privacy per poter inviare il messaggio"); return false;}
				}
				alert("Compilare tutti i campi obbligatori");
				return false;
			}
			alert("Indirizzo email non valido");
			return false;
		}
		alert("Compilare tutti i campi obbligatori");
		return false;
		
	}
	alert("Compilare tutti i campi obbligatori");
	return false

}
function init_controllInfo()
{
	if (!document.getElementById) {return false;}
	var link = document.getElementById("inviainfo");
	link.onsubmit = function() {
		return controlloInfo();
	};
}
function init_controllContact()
{
	if (!document.getElementById) {return false;}
	var link = document.getElementById("invia");
	link.onsubmit = function() {
		return controlloContact();
	};
}

