function trocarClasse(id1, id2, id3, id4){
    document.getElementById(id1).className = 'topoBuscaSelecionado';
    document.getElementById(id2).className = 'topoBuscaNSelecionado';
    document.getElementById(id3).className = 'topoBuscaNSelecionado';
    document.getElementById(id4).className = 'topoBuscaNSelecionado';
    document.getElementById('topoBuscaEntrada').focus();
}
function trocarAction(url){
    document.forms['formBusca'].action = url;
}
