function check() {
	nome = document.forms["RichiestaInfo"].elements["nome"].value;
	
	email = document.forms["RichiestaInfo"].elements["email"].value;
	tel = document.forms["RichiestaInfo"].elements["tel"].value;
	corso = document.forms["RichiestaInfo"].elements["corso"].value;
	messaggio = document.forms["RichiestaInfo"].elements["messaggio"].value;
	dove = document.forms["RichiestaInfo"].elements["dove"].value;
	nomeForm = document.forms["RichiestaInfo"].elements["nomeForm"].value;
	
	privacy = document.forms["RichiestaInfo"].elements["privacy"].checked;
	if(nome!="" && email!="" && tel!="" && corso!="" && messaggio!="" && dove!="Scegli..." && privacy==true)
	{
			document.forms["RichiestaInfo"].submit();
			window.open('RichiestaInviata.html','Richiesta Inviata','width=550,height=350 ,toolbar=yes, location=no,status=yes,menubar=yes,scrollbars=no,resizable=no');
	}
	else {
	   	alert("Campila tutti i campi obbligatori e ricordati di spuntare l'informativa sulla privacy!"); 
   }
}
function checkEsp() {
	nome = document.forms["RichiestaInfoEsp"].elements["nomeEsp"].value;
	email = document.forms["RichiestaInfoEsp"].elements["emailEsp"].value;
	tel = document.forms["RichiestaInfoEsp"].elements["telEsp"].value;
	corso = document.forms["RichiestaInfoEsp"].elements["corsoEsp"].value;
	messaggio = document.forms["RichiestaInfoEsp"].elements["messaggioEsp"].value;
	dove = document.forms["RichiestaInfoEsp"].elements["doveEsp"].value;
	nomeForm = document.forms["RichiestaInfoEsp"].elements["nomeFormEsp"].value;
	privacy = document.forms["RichiestaInfoEsp"].elements["privacy"].checked;
	if(nome!="" && email!="" && tel!="" && corso!="" && messaggio!="" && dove!="Scegli..." && privacy==true)
	{
			document.forms["RichiestaInfoEsp"].submit();
			window.open('RichiestaInviata.html','Richiesta Inviata','width=550,height=350 ,toolbar=yes, location=no,status=yes,menubar=yes,scrollbars=no,resizable=no');
	}
	else {
	   	alert("Campila tutti i campi obbligatori e ricordati di spuntare l'informativa sulla privacy!"); 
   }
}
function cambia(imm1,campo) {
	document.getElementById(campo).src=imm1;
}
function reset(imm1,campo) {
	document.getElementById(campo).src=imm1;
}

