
function rep_Consult(valor) {
	document.getElementById("rep_consulta").innerHTML = "<div style='text-align:center'><img src='../img/loading2.gif' width='30' height='29' /><br/><span>Consultando...</span></div>";
	xmlhttp = mount_XMLHttp();
	url = ajax_path + "rep.consulta.php?regiao=" + valor;
	xmlhttp.open("GET", url, true);

	xmlhttp.onreadystatechange = function(){
		if (xmlhttp.readyState == 4) {
			retorno	= xmlhttp.responseText;
			document.getElementById("rep_consulta").innerHTML = retorno;
		}
	}
	xmlhttp.send(null);
}


function rep_ConsultQuery() {
	var q = document.getElementById("rep_q").value;

	if (q.length < 3) {
		alert('Digite una palabra para hacer la consulta.');
		return;
	}

	document.getElementById("rep_consulta").innerHTML = "<div style='text-align:center'><img src='../img/loading2.gif' width='30' height='29' /><br/><span>Consultando...</span></div>";
	xmlhttp	= mount_XMLHttp();
	url	= ajax_path + "rep.consulta.php?q=" + q;
	xmlhttp.open("GET", url, true);

	xmlhttp.onreadystatechange = function(){
		if (xmlhttp.readyState == 4) {
			retorno	= xmlhttp.responseText;
			document.getElementById("rep_consulta").innerHTML = retorno;
		}
	}
	xmlhttp.send(null);
	document.getElementById("rep_q").value = "";
}