// JavaScript Document

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";
}
}
