function include_css( url){
  obj = document.createElement('link');
  obj.rel ='stylesheet';
  obj.type = 'text/css';
  obj.href = url;
  
  $('head').append( obj);
  //rel="stylesheet" type="text/css" href="./estilos/defecto/general.css"/> 
}

