
        function verifica(){
     if (document.form1.nome.value==""){
        window.alert("Campo nome deve ser digitado!");
		return false; 
        }

     if (document.form1.email.value==""){
        window.alert("Campo email deve ser digitado!");
		return false;
        }
		
		if (document.form1.email.value.indexOf("@")==-1 || document.form1.email.value.indexOf(".")==-1){
		window.alert("Digite um Email válido.");
		return false;
		}

		if (document.form1.antispam.value==""){
        window.alert("Campo Antispam deve ser digitado!");
		return false;
        } 	
	
        if (document.form1.antispam.value!="2"){
        window.alert("SOMA ANTISPAM INCORRETA!");
		return false;
        } 
       return true;
	}
	


// JavaScript Doc