Buenas a todos.
He modificado un poco el script para saber el host y así se cargue el contenido en cualquier pc.
Puede que no sea muy elegante pero tiene el efecto que quiero.
el código del enlace es el mismo y el des script quedaría
Código:
<script type="text/javascript">
$(document).ready(function() {
$(".Temas").click(function(event) {
var hostactual = window.location.host;
var urla = $(this).attr("href").substr(31);
$('#div-Apuntes').load('http://'+hostactual+urla);
event.preventDefault();
var enlace = urla.split(" ",1);
var alink = document.getElementById("enlace-temas");
alink.href=enlace;
alink.target = "_blank";
document.getElementById("cabecera-enlace-temas").style.display='block';
var URLactual = window.location.host;
});
});
</script>
Por si a alguien le sirve o tiene una mejor solución..
Saludos