// JavaScript Document

function InviaModulo(){
 
       	msg="";
		campo="";
		
if (document.Modulo.nome.value=="") {
	msg=msg + "Compilare il campo nome \n";
	if (campo==""){
		campo="nome";
		}
	}
	if (document.Modulo.cognome.value=="") {
	msg=msg + "Compilare il campo cognome \n";
	if (campo==""){
		campo="cognome";
		}
	}

if (document.Modulo.email.value=="") {
	msg=msg + "Compilare il campo indirizzo email \n";
	if (campo==""){
		campo="email";
		}
	}
if (document.Modulo.email.value!="") {
		txt=document.Modulo.email.value;
		if (txt.indexOf("@")==-1){
		msg=msg + "Attenzione indirizzo email non valido \n";
		if (campo==""){
			campo="email";
			}
		}else
		{
		txt1=txt.split("@");
		if (txt1[1].indexOf(".")==-1){
		msg=msg + "Attenzione indirizzo email non valido \n";
		if (campo==""){
			campo="email";
			}
		}
		}
}

if (document.Modulo.messaggio.value=="") {
	msg=msg + "Compilare il messaggio \n";
	if (campo==""){
		campo="telefono";
		}
	}


if (msg!=""){
	alert(msg);
	if (campo!=""){
		document.Modulo.elements[campo].focus();
	}
	return false;
}





	}

