

function baseUrl(file) {

    if (location.host == 'localhost') {
        url_base = 'http://'+location.host+'/manzanares.es';
    } else {
        url_base = 'http://'+location.host;
    }

    if (file == null) {
        return url_base;
    } else {
        if (file.charAt(0) != '/') {
            return url_base + '/' + file;
        } else {
            return url_base + file;
        }
    }

}

/*
 * Manejo de enlaces para la validación XHTML
 * 
 */
$(document).ready(function(){
    
    $('a.externo').attr('target', '_blank');
    
});
