// JavaScript Document

function _pesquisar(base_url) {

	if(document.getElementById('lancamentos').checked) {
		document.getElementById('buscaImoveis').action = base_url + 'index.php/lancamentos/';
	} else if(document.getElementById('comprar').checked) {
		document.getElementById('buscaImoveis').action = base_url + 'index.php/comprar/';
	} else {
		document.getElementById('buscaImoveis').action = base_url + 'index.php/consultar_imoveis/';
	}

}

function _define(id) {
	if(id=='lancamentos') {
		document.getElementById('comprar').checked = false;
	} else {
		document.getElementById('lancamentos').checked = false;
	}
}
