function getCidades(url,idestado){
    getAjax(url+'&idestado='+idestado,'divcidade','','');
}

function ordenaOferta(ordena){
	document.getElementById('ordem').value = ordena;
    var formof = document.getElementById('frmofertas');
    formof.submit();
}

function desenhaBorda(id, largura, altura, tipotamanho, estilo){
	//alert(id);
	//alert(altura);
    var elemento = document.getElementById(id);
    elemento.style.border = estilo;
    elemento.style.height = altura+tipotamanho;
    elemento.style.width = largura+tipotamanho; 
}

function fazerBusca(idform,palavra){
	var objForm = document.getElementById(idform);
	var objTxt = document.getElementById(palavra);
	objForm.action = objForm.action + objTxt.value + '/'; 
}