function popup(){
	window.open('galeriaFotos/fotoVistaPanoramica.htm','popup','width=535,height=580,scrolling=none,top=50,left=50')
}

function popupBalan(){
	window.open('galeriaFotos/fotoVistaPanoramica.htm','popup','width=535,height=580,scrolling=none,top=50,left=50')
}

function openMapa(){
	window.open('mapa_pop.htm','openMapa','width=700,height=400,scrolling=none,top=50,left=50')
}

//VALIDA FORMULÁRIO
function enviardados(){
	
	if(document.dados.tx_nome.value=="" || document.dados.tx_nome.value.length < 4)
	{
		alert( "Preencha campo nome corretamente!" );
			document.dados.tx_nome.focus();
				return false;
	}
	
		
	if( document.dados.tx_email.value=="" || document.dados.tx_email.value.indexOf('@')==-1 || document.dados.tx_email.value.indexOf('.')==-1 )
	{
		alert( "Preencha campo E-mail corretamente!" );
			document.dados.tx_email.focus();
				return false;
	}

	if (document.dados.tx_mensagem.value=="")
	{
		alert( "Preencha o campo Mensagem!" );
			document.dados.tx_mensagem.focus();
				return false;
	}	
	
return true;
}

//VALIDA FORMULÁRIO