jQuery(function($) {	
	$("body").noContext();	
	$("a").click(function() {
		if (this.href) {
			if (this.href.indexOf(location.hostname) == -1 || $(this).attr("rel")=="external") {
				abreVentana(this.href);
				return false;
			}
		}
	});	
});
function abreVentana(direccion) {
	if (!(window.open(direccion))) {
		alert("No se ha podido abrir la nueva ventana. Por favor, habilite la apertura de ventanas emergentes en su navegador e inténtelo de nuevo.");
	}
	return false;
}


