// JavaScript Document
var iddiv = "";
var fc = "";

function Ajax_AutoCompletar(){
	if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete"){
		result = xmlHttp.responseText;
		if(fc == "FreteUnico"){
			document.getElementById(iddiv).innerHTML = result;
		}
	}
}

//onEnterNow(event,'buscarPalavra()');

function KeyPress_Completar(valor,div){
	if(valor != "")
		document.getElementById(div).style.display = "block";
	else
		document.getElementById(div).style.display = "none";

	fc = "FreteUnico";
	iddiv = "ResultadoBusca";
	url = "AutoCompletar_Ajax.asp?busca="+valor+"&tipo=1&anticache="+Math.random();
	enviaGetStateChange(true,"Ajax_AutoCompletar");
}
