jQuery(function($) {
	$(".seleccionLocal a").click(function() { 
		$(".seleccionLocal a").attr("id","");
		$(this).attr("id","current_tab");
	});
	$(".popup").click(function() {
		var ancho = 300;
		var alto = 300;
		var features = "resizable=yes";
		if ($(this).hasClass("noScroll")) {
			features += ", scrollbars=no";
		} else {
			features += ", scrollbars=yes";
		}
		var izq = (screen.width - ancho) / 2;
		var arr = (screen.height - alto) / 2;
		window.open($(this).attr("href"), 'ventana', 'width=' + ancho + ',height=' + alto + ',left=' + izq + ',top=' + arr + ',' + features);
		return false;
	});
});





