// JavaScript Document



function textoBusca(tipo){
	var valorBusca = document.getElementById('busca').value;
	
	if(tipo==1){
		if(valorBusca=='Procurar' || valorBusca=='Digite uma palavra-chave!'){ document.getElementById('busca').value=''; }
	}else{
		if(valorBusca=='' || valorBusca=='Digite uma palavra-chave!'){ document.getElementById('busca').value='Procurar'; }
	}
}

function carregaPag(pagina,vars){
	abrir(pagina+'.php','&pagi='+vars+'&Pag='+pagina,'CarregaConteudo');
}

function aLogin(acao){
	try{
		document.getElementById('alertLogin').style.display=acao;
		document.getElementById('RegistraLogin').style.display=acao;
	}catch(nda){}
}

function aSenha(acao){
	try{
		document.getElementById('alertSenha').style.display=acao;
		document.getElementById('RegistraLogin').style.display=acao;
	}catch(nda){}
}


function SomeYou(){
	try{
		document.getElementById('VideoHome').style.visibility='collapse'
		document.getElementById('VideoHome2').style.display='none';
		document.getElementById('VideoHomeHover').style.display='block';
	}catch(nda){}
}

function MostraYou(){
	try{
		document.getElementById('VideoHome').style.visibility='visible'
		document.getElementById('VideoHome2').style.display='block';
		document.getElementById('VideoHomeHover').style.display='none';
	}catch(nda){}
}

function _mostraDiv(){
	document.getElementById('MapCidade').style.display='block';
}



function validaLogin(formulario){
	if(formulario.login.value.length < 3){
		aLogin('block');
		formulario.login.focus();
		return(false);
	}
	if(formulario.senha.value.length < 3){
		aSenha('block');
		formulario.senha.focus();
		return(false);
	}
}


function abrirPop(pagina,largura,altura){
	w = screen.width;
	h = screen.height;
	meio_w = w/2;
	meio_h = h/2;
	altura2 = altura/2;
	largura2 = largura/2;
	meio1 = meio_h-altura2;
	meio2 = meio_w-largura2;
	window.open(pagina,'','height=' + altura + ', width=' + largura + ', top='+meio1+', left='+meio2+''); 
}






