// JavaScript Document
function trocaOver(i, fundo, fonte)
{	
	if (fundo == 'undefined')
		fundo='#5391D5' ;
	if (fonte =='undefined')	
		fonte='#FFFFFF';
		
	document.getElementById('imenu'+i).style.background=fundo;
	document.getElementById('imenu'+i).style.color=fonte;
}
function trocaOut(i, fundo, fonte)
{
	if (fundo == 'undefined')
		fundo='#F9F9F9';
	if (fonte =='undefined')	
		fonte='#666666';
	
	document.getElementById('imenu'+i).style.background=fundo;
	document.getElementById('imenu'+i).style.color=fonte;
}

function maisPesquisadas(palavra){
 document.getElementById("formPesqTopo").filtro.value = palavra;
 document.getElementById("formPesqTopo").onde.value = "portal";
 document.getElementById("formPesqTopo").submit();
}

function limparLoginReporter() {
 document.getElementById("ri_form_login").value = '';
 document.getElementById("ri_form_senha").value = '';
 document.getElementById("ri_form_login").focus();
}

function mostraCidade()  {
 document.frmContato.acao.value = 0;
 document.frmContato.submit();
}
	
function verificaAcordo()
 {
 if (document.frmContato.concorda.checked){
	document.frmContato.concluir.disabled = "";
document.getElementById("concluir").className="botao";
}
else
{
document.frmContato.concluir.disabled = "disabled";
document.getElementById("concluir").className="botaoDesativado";
}
}

function IrPara(url)
{
	location.href=url;
}


