function getRepre(repre) {
	$.ajax({
		type: "POST",
		url: "mostra_repre.php",
		data: "repre="+repre,
		success: function(o){
			$("#mostra-repre").html(o);
		}
	});
}

function getBem(id) {
	$.ajax({
		type: "POST",
		url: "mostra_bem.php",
		data: "id="+id,
		success: function(o){
			$("#mostra-bem").html(o);
		}
	});
}

function mostrarepre() {
	//criando um link falso, para o LightBox captar as informações
	var a_false = document.createElement("a");
	a_false.title = "Representantes";
	a_false.href = "representantes.php?height=400&width=730";
	a_false.className = "thickbox";
	
	//chamando a função do thickbox responsável pelo início das ações
	tb_show(a_false.title,a_false.href,a_false.rel);
	//anulando o link
	a_false = null;
}

function mostraonde() {
	//criando um link falso, para o LightBox captar as informações
	var a_false = document.createElement("a");
	a_false.title = "Onde Encontrar";
	a_false.href = "onde_encontrar.php?height=300&width=600";
	a_false.className = "thickbox";
	
	//chamando a função do thickbox responsável pelo início das ações
	tb_show(a_false.title,a_false.href,a_false.rel);
	//anulando o link
	a_false = null;
}