
function controllo(){
var test;
test="true";

	if (test=="true") {
					if(document.from_contatti.nome.value=="") {
					alert("Compila il campo nome");
					document.from_contatti.nome.focus();
					test="false";
					}
				}
	if (test=="true") {
					if(document.from_contatti.email.value=="") {
					alert("Compila il campo email");
					document.from_contatti.email.focus();
					test="false";
					}
				}
	if (test=="true") {
				if (document.from_contatti.email.value.indexOf("@")==-1)
					{					
					alert("Indirizzo email non valido");
					document.from_contatti.email.focus();
					test="false";
					}
				}
	if (test=="true") {
				if (document.from_contatti.email.value.indexOf(".")==-1)
					{					
					alert("Indirizzo email non valido");
					document.from_contatti.email.focus();
					test="false";
					}
				}
	if (test=="true") {
					if(document.from_contatti.telefono.value=="") {
					alert("Compila il campo telefono");
					document.from_contatti.telefono.focus();
					test="false";
					}
				}
	if (test=="true") {
					if(document.from_contatti.messaggio.value=="") {
					alert("Compila il campo messaggio");
					document.from_contatti.messaggio.focus();
					test="false";
					}
				}
	
	
	
	
	
	if (test=="true")
				{
				document.from_contatti.submit();
				}
	}


