// JavaScript Document
<!--
		window.onload = verprojetos_fexar;
		
		<!-- VALIDAÇÃO -->
		function enviardados(){
			
			if(document.dados.nome.value=="" || document.dados.nome.value.length < 8)
			{
				alert( "Preencha campo NOME corretamente!" );
				document.dados.nome.focus();
				return false;
			}
			
				
			if( document.dados.email.value=="" || document.dados.email.value.indexOf('@')==-1 || document.dados.email.value.indexOf('.')==-1 )
			{
				alert( "Preencha campo E-MAIL corretamente!" );
					document.dados.email.focus();
						return false;
			}
		
			if (document.dados.mensagem.value=="")
			{
				alert( "Preencha o campo MENSAGEM!" );
					document.dados.mensagem.focus();
						return false;
			}	
			
			if (document.dados.mensagem.value.length < 25 )
			{
				alert( "É necessario preencher o campo MENSAGEM com mais de 50 caracteres!" );
					document.dados.mensagem.focus();
						return false;
			}
			return true;
			
		}
		
		<!-- FIM DA VALIDAÇÃO -->

		function janela(url,nome, largura, altura){
			window.open(url,nome,'status=1,scrollbars=1,height='+altura+',width='+largura)
		}

		
		function redirectOutput(myForm) {
		var w = window.open('about:blank','Popup_Window','status=1,scrollbars=1,height=350,width=240');
		myForm.target = 'Popup_Window';
		return true;
		}
	
		<!-- MISSIONARIOS  -->
		
		function verprojetos_fexar(){
			var lista=document.getElementsByTagName('div');
			for(var i=0; i<lista.length; i++) {
				if(lista[i].className == "projetos") {
					lista[i].style.display = 'none';
				}
			}
		}
		
		
		
		
		function verprojetos(id){
			verprojetos_fexar()
			var obj = document.getElementById(id);
			if(obj.style.display == "none") {
				obj.style.display = "";
			} else {
				obj.style.display = "none";
			}	
			
		}

//-->