// JavaScript Document
function LibCreateRequestObject()
{
	var request_o;
	if(navigator.appName == "Microsoft Internet Explorer")
		request_o = new ActiveXObject("Microsoft.XMLHTTP");
	else
		request_o = new XMLHttpRequest();
	return request_o;
}

function CarregaDiv(acao)
{
	var httpPesquisar = LibCreateRequestObject();
	var strEnvio = "CarregaDivIndex.asp";
	strEnvio = strEnvio + "?Action=" + acao;
	httpPesquisar.open('get', strEnvio);
	httpPesquisar.onreadystatechange = function HandlePesquisa()
	{
		if(httpPesquisar.readyState == 4)
		{
			document.getElementById(acao).innerHTML = httpPesquisar.responseText;
		}
	}
	httpPesquisar.send(null);		
}
