
function carregando_icc() {
	document.getElementById('carrega_busca').innerHTML = '<img src="../../painel/imgs/busca.gif" width="15" height="15" border="0" /><span class="rod"></span>'; 
}

function recarregado_icc() {
	document.getElementById('carrega_busca').innerHTML = '<a href="javascript:void(0)" onclick="busca_icc()"><img src="imgs/bt_ok.gif" width="20" height="20" border="0" /></a>';
}

function busca_icc() {
	if (document.frmBusca_icc.busca_txt.value.length > 0) 
	{
		carregando_icc();
		xhSend('../icc/inc.busca_icc.php','frmBusca_icc',busca_iccRe);
	}
}

function busca_iccRe()
{
	if (xhReq.readyState == 4 && xhReq.status == 200)
	{
		recarregado_icc();
		obj = xhReq.responseText;
		if (obj != '[..]') 
			document.getElementById('conteudo_').innerHTML = obj;
		else
			alert('Não existe nenhum registro com essa palavra chave.');
	}
}

function busca_iccRe2()
{
	if (xhReq.readyState == 4 && xhReq.status == 200)
	{
		recarregado_icc();
		obj = xhReq.responseXML;
		var retorno = obj.getElementsByTagName('retorno')[0];
		if (retorno.getElementsByTagName('msg')[0].firstChild.nodeValue == '1')
		{
			document.getElementById('conteudo_').innerHTML = retorno.getElementsByTagName('pagina')[0].firstChild.nodeValue;
		}	
	}
}

