function cargarURL(url,destino) {
  $.get("secciones/"+url+".html",function(data) {
      $("#"+destino).html(data);
  });
}

