$(document).ready(function(){	
	var direccion = base();
	$("#vtel").click(function() {
		var valor = $("#id").text();	
		$(this).load(direccion+"/ajax/telefono_anunciante.php",
			{ id: valor }
		);
		return false;
	});
	$("p a.hipoteca").click(function() {
		if (!(window.open(this.href,"hipoteca","width=500,height=400"))) {
			alert("No se ha podido abrir la nueva ventana. Por favor, habilite la apertura de ventanas emergentes en su navegador e inténtelo nuevamente.");
		}	
		return false;
	});
	$("a.plano").click(function() {
		if (!(window.open(this.href,"plano","width=500,height=400"))) {
			alert("No se ha podido abrir la nueva ventana. Por favor, habilite la apertura de ventanas emergentes en su navegador e inténtelo nuevamente.");
		}	
		return false;
	});
});
