function fetchbyid(id) {
return (document.getElementById) ? document.getElementById(id) : document.all[id];
}

function blinkit(id, sair, codigo_id, tipo_imovel, clicando){
		if (sair == "falso"){
		fetchbyid(id).style.background='#e8e8e8';
		}else{
		fetchbyid(id).style.background='#DBDBDB';
	//	fetchbyid(id).style.cursor='pointer';
		//	if(clicando == "clicado"){
	//		window.location='compelmento.php?id='+codigo_id+'&tipo_imovel='+tipo_imovel;
	//		}
		}
}
