{"id":1074,"date":"2022-09-28T15:36:01","date_gmt":"2022-09-28T13:36:01","guid":{"rendered":"https:\/\/www.nb.no\/dfb\/?page_id=1074"},"modified":"2025-05-05T17:17:38","modified_gmt":"2025-05-05T15:17:38","slug":"lan-en-bokpakke","status":"publish","type":"page","link":"https:\/\/beta.bibliotekutvikling.no\/dfb\/lan-en-bokpakke\/","title":{"rendered":"L\u00e5n en bokpakke"},"content":{"rendered":"\n<p><strong>Det er stor ettersp\u00f8rsel etter \u00e5 l\u00e5ne bokpakker p\u00e5 ukrainsk. I gjennomsnitt m\u00e5 man regne med en ventetid p\u00e5 4-6 uker f\u00f8r pakken sendes fra oss. <\/strong><br><br><strong>Vi m\u00e5 ogs\u00e5 forbeholde oss retten til \u00e5 redusere antall b\u00f8ker som \u00f8nskes l\u00e5nt og lengden p\u00e5 l\u00e5netiden for \u00e5 sikre at flest mulig bibliotek f\u00e5r anledning til l\u00e5ne en bokpakke.<\/strong><br><br>Vi h\u00e5ndplukker en eske med b\u00f8ker, film, lydb\u00f8ker og spr\u00e5kkurs ut fra det enkelte biblioteks behov, og sender de p\u00e5 l\u00e5n over en lengre periode. Bokpakker kan bare l\u00e5nes av bibliotek i Norge.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p>Privatpersoner og andre institusjoner m\u00e5 kontakte sitt lokale bibliotek for \u00e5 gj\u00f8re en bestilling. Bestemte titler kan da bestilles som vanlig fjernl\u00e5n via <a href=\"https:\/\/dfb.bib.no\/cgi-bin\/m2?\">webs\u00f8ket v\u00e5rt<\/a>.<\/p>\n\n\n\n<p>Privatpersoner med et <a href=\"https:\/\/bibsok.no\/?mode=omlanekort\">nasjonalt l\u00e5nekort<\/a> kan selv bestille fjernl\u00e5n via <a href=\"https:\/\/bibsok.no\/\">Biblioteks\u00f8k<\/a><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><a href=\"https:\/\/bibliotekutvikling.no\/dfb\/om-oss\/utlansreglement\/\">Adresse for retur av bokpakker.<\/a><\/p>\n\n\n<script>\n\/\/----------------------------------------------------------\n\/\/------ JAVASCRIPT HOOK FUNCTIONS FOR GRAVITY FORMS -------\n\/\/----------------------------------------------------------\n\nif ( ! gform ) {\n\tdocument.addEventListener( 'gform_main_scripts_loaded', function() { gform.scriptsLoaded = true; } );\n\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', function() { gform.themeScriptsLoaded = true; } );\n\twindow.addEventListener( 'DOMContentLoaded', function() { gform.domLoaded = true; } );\n\n\tvar gform = {\n\t\tdomLoaded: false,\n\t\tscriptsLoaded: false,\n\t\tthemeScriptsLoaded: false,\n\t\tisFormEditor: () => typeof InitializeEditor === 'function',\n\n\t\t\/**\n\t\t * @deprecated 2.9 the use of initializeOnLoaded in the form editor context is deprecated.\n\t\t * @remove-in 3.1 this function will not check for gform.isFormEditor().\n\t\t *\/\n\t\tcallIfLoaded: function ( fn ) {\n\t\t\tif ( gform.domLoaded && gform.scriptsLoaded && ( gform.themeScriptsLoaded || gform.isFormEditor() ) ) {\n\t\t\t\tif ( gform.isFormEditor() ) {\n\t\t\t\t\tconsole.warn( 'The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.' );\n\t\t\t\t}\n\t\t\t\tfn();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\treturn false;\n\t\t},\n\n\t\t\/**\n\t\t * Call a function when all scripts are loaded\n\t\t *\n\t\t * @param function fn the callback function to call when all scripts are loaded\n\t\t *\n\t\t * @returns void\n\t\t *\/\n\t\tinitializeOnLoaded: function( fn ) {\n\t\t\tif ( ! gform.callIfLoaded( fn ) ) {\n\t\t\t\tdocument.addEventListener( 'gform_main_scripts_loaded', () => { gform.scriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', () => { gform.themeScriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\twindow.addEventListener( 'DOMContentLoaded', () => { gform.domLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t}\n\t\t},\n\n\t\thooks: { action: {}, filter: {} },\n\t\taddAction: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'action', action, callable, priority, tag );\n\t\t},\n\t\taddFilter: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'filter', action, callable, priority, tag );\n\t\t},\n\t\tdoAction: function( action ) {\n\t\t\tgform.doHook( 'action', action, arguments );\n\t\t},\n\t\tapplyFilters: function( action ) {\n\t\t\treturn gform.doHook( 'filter', action, arguments );\n\t\t},\n\t\tremoveAction: function( action, tag ) {\n\t\t\tgform.removeHook( 'action', action, tag );\n\t\t},\n\t\tremoveFilter: function( action, priority, tag ) {\n\t\t\tgform.removeHook( 'filter', action, priority, tag );\n\t\t},\n\t\taddHook: function( hookType, action, callable, priority, tag ) {\n\t\t\tif ( undefined == gform.hooks[hookType][action] ) {\n\t\t\t\tgform.hooks[hookType][action] = [];\n\t\t\t}\n\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\tif ( undefined == tag ) {\n\t\t\t\ttag = action + '_' + hooks.length;\n\t\t\t}\n\t\t\tif( priority == undefined ){\n\t\t\t\tpriority = 10;\n\t\t\t}\n\n\t\t\tgform.hooks[hookType][action].push( { tag:tag, callable:callable, priority:priority } );\n\t\t},\n\t\tdoHook: function( hookType, action, args ) {\n\n\t\t\t\/\/ splice args from object into array and remove first index which is the hook name\n\t\t\targs = Array.prototype.slice.call(args, 1);\n\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action], hook;\n\t\t\t\t\/\/sort by priority\n\t\t\t\thooks.sort(function(a,b){return a[\"priority\"]-b[\"priority\"]});\n\n\t\t\t\thooks.forEach( function( hookItem ) {\n\t\t\t\t\thook = hookItem.callable;\n\n\t\t\t\t\tif(typeof hook != 'function')\n\t\t\t\t\t\thook = window[hook];\n\t\t\t\t\tif ( 'action' == hookType ) {\n\t\t\t\t\t\thook.apply(null, args);\n\t\t\t\t\t} else {\n\t\t\t\t\t\targs[0] = hook.apply(null, args);\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\t\t\tif ( 'filter'==hookType ) {\n\t\t\t\treturn args[0];\n\t\t\t}\n\t\t},\n\t\tremoveHook: function( hookType, action, priority, tag ) {\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\t\thooks = hooks.filter( function(hook, index, arr) {\n\t\t\t\t\tvar removeHook = (undefined==tag||tag==hook.tag) && (undefined==priority||priority==hook.priority);\n\t\t\t\t\treturn !removeHook;\n\t\t\t\t} );\n\t\t\t\tgform.hooks[hookType][action] = hooks;\n\t\t\t}\n\t\t}\n\t};\n}\n<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gravity-theme gform-theme--no-framework' data-form-theme='gravity-theme' data-form-index='0' id='gform_wrapper_6' style='display:none'>\n                        <div class='gform_heading'>\n                            <h2 class=\"gform_title\">L\u00e5n en bokpakke<\/h2>\n                            <p class='gform_description'>Vi h\u00e5ndplukker b\u00f8ker, film, lydb\u00f8ker og spr\u00e5kkurs ut fra det enkelte biblioteks behov.<\/p>\n\t\t\t\t\t\t\t<p class='gform_required_legend'>&quot;<span class=\"gfield_required gfield_required_asterisk\">*<\/span>&quot; obligatorisk felt<\/p>\n                        <\/div><form method='post' enctype='multipart\/form-data'  id='gform_6'  action='\/dfb\/wp-json\/wp\/v2\/pages\/1074' data-formid='6' novalidate>\n                        <div class='gform-body gform_body'><div id='gform_fields_6' class='gform_fields top_label form_sublabel_below description_below validation_below'><fieldset id=\"field_6_1\" class=\"gfield gfield--type-checkbox gfield--type-choice gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Hvilke medietyper \u00f8nsker du?<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/legend><div class='ginput_container ginput_container_checkbox'><div class='gfield_checkbox ' id='input_6_1'><div class='gchoice gchoice_6_1_1'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_1.1' type='checkbox'  value='B\u00f8ker'  id='choice_6_1_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_6_1_1' id='label_6_1_1' class='gform-field-label gform-field-label--type-inline'>B\u00f8ker<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_6_1_2'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_1.2' type='checkbox'  value='Filmer'  id='choice_6_1_2'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_6_1_2' id='label_6_1_2' class='gform-field-label gform-field-label--type-inline'>Filmer<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_6_1_3'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_1.3' type='checkbox'  value='Norskkurs'  id='choice_6_1_3'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_6_1_3' id='label_6_1_3' class='gform-field-label gform-field-label--type-inline'>Norskkurs<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_6_1_4'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_1.4' type='checkbox'  value='Lydb\u00f8ker'  id='choice_6_1_4'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_6_1_4' id='label_6_1_4' class='gform-field-label gform-field-label--type-inline'>Lydb\u00f8ker<\/label>\n\t\t\t\t\t\t\t<\/div><\/div><\/div><\/fieldset><fieldset id=\"field_6_2\" class=\"gfield gfield--type-radio gfield--type-choice gfield__grid languages gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label' >P\u00e5 hvilket spr\u00e5k?<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_6_2'>\n\t\t\t<div class='gchoice gchoice_6_2_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='alb'  id='choice_6_2_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_0' id='label_6_2_0' class='gform-field-label gform-field-label--type-inline'>Albansk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='amh'  id='choice_6_2_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_1' id='label_6_2_1' class='gform-field-label gform-field-label--type-inline'>Amharisk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='ara'  id='choice_6_2_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_2' id='label_6_2_2' class='gform-field-label gform-field-label--type-inline'>Arabisk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_3'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='arm'  id='choice_6_2_3' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_3' id='label_6_2_3' class='gform-field-label gform-field-label--type-inline'>Armensk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_4'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='bel'  id='choice_6_2_4' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_4' id='label_6_2_4' class='gform-field-label gform-field-label--type-inline'>Belarusisk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_5'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='ben'  id='choice_6_2_5' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_5' id='label_6_2_5' class='gform-field-label gform-field-label--type-inline'>Bengali<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_6'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='bos'  id='choice_6_2_6' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_6' id='label_6_2_6' class='gform-field-label gform-field-label--type-inline'>Bosnisk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_7'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='bul'  id='choice_6_2_7' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_7' id='label_6_2_7' class='gform-field-label gform-field-label--type-inline'>Bulgarsk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_8'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='bur'  id='choice_6_2_8' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_8' id='label_6_2_8' class='gform-field-label gform-field-label--type-inline'>Burmesisk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_9'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='prs'  id='choice_6_2_9' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_9' id='label_6_2_9' class='gform-field-label gform-field-label--type-inline'>Dari<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_10'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='eng'  id='choice_6_2_10' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_10' id='label_6_2_10' class='gform-field-label gform-field-label--type-inline'>Engelsk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_11'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='est'  id='choice_6_2_11' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_11' id='label_6_2_11' class='gform-field-label gform-field-label--type-inline'>Estisk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_12'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='fre'  id='choice_6_2_12' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_12' id='label_6_2_12' class='gform-field-label gform-field-label--type-inline'>Fransk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_13'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='geo'  id='choice_6_2_13' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_13' id='label_6_2_13' class='gform-field-label gform-field-label--type-inline'>Georgisk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_14'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='gre'  id='choice_6_2_14' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_14' id='label_6_2_14' class='gform-field-label gform-field-label--type-inline'>Gresk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_15'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='guj'  id='choice_6_2_15' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_15' id='label_6_2_15' class='gform-field-label gform-field-label--type-inline'>Gujarati<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_16'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='hau'  id='choice_6_2_16' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_16' id='label_6_2_16' class='gform-field-label gform-field-label--type-inline'>Hausa<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_17'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='heb'  id='choice_6_2_17' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_17' id='label_6_2_17' class='gform-field-label gform-field-label--type-inline'>Hebraisk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_18'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='hin'  id='choice_6_2_18' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_18' id='label_6_2_18' class='gform-field-label gform-field-label--type-inline'>Hindi<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_19'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='ind'  id='choice_6_2_19' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_19' id='label_6_2_19' class='gform-field-label gform-field-label--type-inline'>Indonesisk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_20'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='ice'  id='choice_6_2_20' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_20' id='label_6_2_20' class='gform-field-label gform-field-label--type-inline'>Islandsk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_21'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='jpn'  id='choice_6_2_21' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_21' id='label_6_2_21' class='gform-field-label gform-field-label--type-inline'>Japansk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_22'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='yor'  id='choice_6_2_22' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_22' id='label_6_2_22' class='gform-field-label gform-field-label--type-inline'>Joruba<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_23'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='chi'  id='choice_6_2_23' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_23' id='label_6_2_23' class='gform-field-label gform-field-label--type-inline'>Kinesisk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_24'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='kor'  id='choice_6_2_24' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_24' id='label_6_2_24' class='gform-field-label gform-field-label--type-inline'>Koreansk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_25'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='hrv'  id='choice_6_2_25' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_25' id='label_6_2_25' class='gform-field-label gform-field-label--type-inline'>Kroatisk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_26'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='kmr'  id='choice_6_2_26' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_26' id='label_6_2_26' class='gform-field-label gform-field-label--type-inline'>Kurmandsji<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_27'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='lav'  id='choice_6_2_27' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_27' id='label_6_2_27' class='gform-field-label gform-field-label--type-inline'>Latvisk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_28'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='lit'  id='choice_6_2_28' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_28' id='label_6_2_28' class='gform-field-label gform-field-label--type-inline'>Litauisk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_29'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='mac'  id='choice_6_2_29' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_29' id='label_6_2_29' class='gform-field-label gform-field-label--type-inline'>Makedonsk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_30'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='may'  id='choice_6_2_30' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_30' id='label_6_2_30' class='gform-field-label gform-field-label--type-inline'>Malayisk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_31'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='mar'  id='choice_6_2_31' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_31' id='label_6_2_31' class='gform-field-label gform-field-label--type-inline'>Marathi<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_32'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='dut'  id='choice_6_2_32' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_32' id='label_6_2_32' class='gform-field-label gform-field-label--type-inline'>Nederlandsk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_33'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='nep'  id='choice_6_2_33' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_33' id='label_6_2_33' class='gform-field-label gform-field-label--type-inline'>Nepalesisk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_34'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='nob'  id='choice_6_2_34' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_34' id='label_6_2_34' class='gform-field-label gform-field-label--type-inline'>Norsk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_35'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='orm'  id='choice_6_2_35' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_35' id='label_6_2_35' class='gform-field-label gform-field-label--type-inline'>Oromo<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_36'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='pan'  id='choice_6_2_36' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_36' id='label_6_2_36' class='gform-field-label gform-field-label--type-inline'>Panjabi<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_37'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='pus'  id='choice_6_2_37' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_37' id='label_6_2_37' class='gform-field-label gform-field-label--type-inline'>Pashto<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_38'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='per'  id='choice_6_2_38' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_38' id='label_6_2_38' class='gform-field-label gform-field-label--type-inline'>Persisk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_39'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='pol'  id='choice_6_2_39' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_39' id='label_6_2_39' class='gform-field-label gform-field-label--type-inline'>Polsk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_40'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='por'  id='choice_6_2_40' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_40' id='label_6_2_40' class='gform-field-label gform-field-label--type-inline'>Portugisisk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_41'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='rum'  id='choice_6_2_41' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_41' id='label_6_2_41' class='gform-field-label gform-field-label--type-inline'>Rumensk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_42'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='rus'  id='choice_6_2_42' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_42' id='label_6_2_42' class='gform-field-label gform-field-label--type-inline'>Russisk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_43'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='srp'  id='choice_6_2_43' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_43' id='label_6_2_43' class='gform-field-label gform-field-label--type-inline'>Serbisk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_44'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='sin'  id='choice_6_2_44' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_44' id='label_6_2_44' class='gform-field-label gform-field-label--type-inline'>Singalesisk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_45'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='slo'  id='choice_6_2_45' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_45' id='label_6_2_45' class='gform-field-label gform-field-label--type-inline'>Slovakisk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_46'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='slv'  id='choice_6_2_46' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_46' id='label_6_2_46' class='gform-field-label gform-field-label--type-inline'>Slovensk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_47'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='som'  id='choice_6_2_47' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_47' id='label_6_2_47' class='gform-field-label gform-field-label--type-inline'>Somali<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_48'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='ckb'  id='choice_6_2_48' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_48' id='label_6_2_48' class='gform-field-label gform-field-label--type-inline'>Sorani<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_49'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='spa'  id='choice_6_2_49' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_49' id='label_6_2_49' class='gform-field-label gform-field-label--type-inline'>Spansk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_50'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='swa'  id='choice_6_2_50' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_50' id='label_6_2_50' class='gform-field-label gform-field-label--type-inline'>Swahili<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_51'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='tgl'  id='choice_6_2_51' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_51' id='label_6_2_51' class='gform-field-label gform-field-label--type-inline'>Tagalog<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_52'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='tam'  id='choice_6_2_52' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_52' id='label_6_2_52' class='gform-field-label gform-field-label--type-inline'>Tamil<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_53'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='tha'  id='choice_6_2_53' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_53' id='label_6_2_53' class='gform-field-label gform-field-label--type-inline'>Thai<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_54'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='tir'  id='choice_6_2_54' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_54' id='label_6_2_54' class='gform-field-label gform-field-label--type-inline'>Tigrinja<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_55'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='cze'  id='choice_6_2_55' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_55' id='label_6_2_55' class='gform-field-label gform-field-label--type-inline'>Tsjekkisk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_56'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='che'  id='choice_6_2_56' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_56' id='label_6_2_56' class='gform-field-label gform-field-label--type-inline'>Tsjetsjensk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_57'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='twi'  id='choice_6_2_57' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_57' id='label_6_2_57' class='gform-field-label gform-field-label--type-inline'>Twi<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_58'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='tur'  id='choice_6_2_58' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_58' id='label_6_2_58' class='gform-field-label gform-field-label--type-inline'>Tyrkisk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_59'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='ukr'  id='choice_6_2_59' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_59' id='label_6_2_59' class='gform-field-label gform-field-label--type-inline'>Ukrainsk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_60'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='hun'  id='choice_6_2_60' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_60' id='label_6_2_60' class='gform-field-label gform-field-label--type-inline'>Ungarsk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_61'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='urd'  id='choice_6_2_61' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_61' id='label_6_2_61' class='gform-field-label gform-field-label--type-inline'>Urdu<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_62'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='vie'  id='choice_6_2_62' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_62' id='label_6_2_62' class='gform-field-label gform-field-label--type-inline'>Vietnamesisk<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_63'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='xho'  id='choice_6_2_63' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_63' id='label_6_2_63' class='gform-field-label gform-field-label--type-inline'>Xhosa<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_2_64'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_2' type='radio' value='zul'  id='choice_6_2_64' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_2_64' id='label_6_2_64' class='gform-field-label gform-field-label--type-inline'>Zulu<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_6_14\" class=\"gfield gfield--type-section gsection field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><h3 class=\"gsection_title\"><\/h3><\/div><fieldset id=\"field_6_3\" class=\"gfield gfield--type-checkbox gfield--type-choice gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Voksne<\/legend><div class='ginput_container ginput_container_checkbox'><div class='gfield_checkbox ' id='input_6_3'><div class='gchoice gchoice_6_3_1'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_3.1' type='checkbox'  value='Ja, jeg vil bestille innhold for voksne'  id='choice_6_3_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_6_3_1' id='label_6_3_1' class='gform-field-label gform-field-label--type-inline'>Ja, jeg vil bestille innhold for voksne<\/label>\n\t\t\t\t\t\t\t<\/div><\/div><\/div><\/fieldset><fieldset id=\"field_6_10\" class=\"gfield gfield--type-radio gfield--type-choice gfield--width-full gfield_contains_required field_sublabel_below gfield--has-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label' >Antall titler<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_6_10'>\n\t\t\t<div class='gchoice gchoice_6_10_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_10' type='radio' value='10'  id='choice_6_10_0' onchange='gformToggleRadioOther( this )' aria-describedby=\"gfield_description_6_10\"   \/>\n\t\t\t\t\t<label for='choice_6_10_0' id='label_6_10_0' class='gform-field-label gform-field-label--type-inline'>5-15 titler<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_10_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_10' type='radio' value='25'  id='choice_6_10_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_10_1' id='label_6_10_1' class='gform-field-label gform-field-label--type-inline'>16-35 titler<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_10_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_10' type='radio' value='42'  id='choice_6_10_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_10_2' id='label_6_10_2' class='gform-field-label gform-field-label--type-inline'>36-50 titler<\/label>\n\t\t\t<\/div><\/div><\/div><div class='gfield_description' id='gfield_description_6_10'>Ta kontakt ved \u00f8nske om flere enn 50 titler<\/div><\/fieldset><div id=\"field_6_15\" class=\"gfield gfield--type-section gsection field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><h3 class=\"gsection_title\"><\/h3><\/div><fieldset id=\"field_6_5\" class=\"gfield gfield--type-checkbox gfield--type-choice gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Barn og ungdom<\/legend><div class='ginput_container ginput_container_checkbox'><div class='gfield_checkbox ' id='input_6_5'><div class='gchoice gchoice_6_5_1'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_5.1' type='checkbox'  value='Ja, jeg vil bestille innhold for barn'  id='choice_6_5_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_6_5_1' id='label_6_5_1' class='gform-field-label gform-field-label--type-inline'>Ja, jeg vil bestille innhold for barn<\/label>\n\t\t\t\t\t\t\t<\/div><\/div><\/div><\/fieldset><fieldset id=\"field_6_11\" class=\"gfield gfield--type-checkbox gfield--type-choice gfield--width-half gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Alder<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/legend><div class='ginput_container ginput_container_checkbox'><div class='gfield_checkbox ' id='input_6_11'><div class='gchoice gchoice_6_11_1'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_11.1' type='checkbox'  value='0-2 \u00e5r'  id='choice_6_11_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_6_11_1' id='label_6_11_1' class='gform-field-label gform-field-label--type-inline'>0-2 \u00e5r<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_6_11_2'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_11.2' type='checkbox'  value='3-5 \u00e5r'  id='choice_6_11_2'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_6_11_2' id='label_6_11_2' class='gform-field-label gform-field-label--type-inline'>3-5 \u00e5r<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_6_11_3'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_11.3' type='checkbox'  value='6-8 \u00e5r'  id='choice_6_11_3'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_6_11_3' id='label_6_11_3' class='gform-field-label gform-field-label--type-inline'>6-8 \u00e5r<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_6_11_4'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_11.4' type='checkbox'  value='9-10 \u00e5r'  id='choice_6_11_4'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_6_11_4' id='label_6_11_4' class='gform-field-label gform-field-label--type-inline'>9-10 \u00e5r<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_6_11_5'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_11.5' type='checkbox'  value='11-12 \u00e5r'  id='choice_6_11_5'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_6_11_5' id='label_6_11_5' class='gform-field-label gform-field-label--type-inline'>11-12 \u00e5r<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_6_11_6'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_11.6' type='checkbox'  value='13-15 \u00e5r'  id='choice_6_11_6'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_6_11_6' id='label_6_11_6' class='gform-field-label gform-field-label--type-inline'>13-15 \u00e5r<\/label>\n\t\t\t\t\t\t\t<\/div><\/div><\/div><\/fieldset><fieldset id=\"field_6_12\" class=\"gfield gfield--type-radio gfield--type-choice gfield--width-half gfield_contains_required field_sublabel_below gfield--has-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label' >Antall titler<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_6_12'>\n\t\t\t<div class='gchoice gchoice_6_12_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_12' type='radio' value='10'  id='choice_6_12_0' onchange='gformToggleRadioOther( this )' aria-describedby=\"gfield_description_6_12\"   \/>\n\t\t\t\t\t<label for='choice_6_12_0' id='label_6_12_0' class='gform-field-label gform-field-label--type-inline'>5-15 titler<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_12_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_12' type='radio' value='25'  id='choice_6_12_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_12_1' id='label_6_12_1' class='gform-field-label gform-field-label--type-inline'>16-35 titler<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_12_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_12' type='radio' value='42'  id='choice_6_12_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_12_2' id='label_6_12_2' class='gform-field-label gform-field-label--type-inline'>36-50 titler<\/label>\n\t\t\t<\/div><\/div><\/div><div class='gfield_description' id='gfield_description_6_12'>Ta kontakt ved \u00f8nske om flere enn 50 titler<\/div><\/fieldset><div id=\"field_6_16\" class=\"gfield gfield--type-section gsection field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><h3 class=\"gsection_title\"><\/h3><\/div><fieldset id=\"field_6_6\" class=\"gfield gfield--type-radio gfield--type-choice gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label' >Hvor lenge \u00f8nsker du \u00e5 l\u00e5ne bokpakken?<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_6_6'>\n\t\t\t<div class='gchoice gchoice_6_6_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_6' type='radio' value='3'  id='choice_6_6_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_6_0' id='label_6_6_0' class='gform-field-label gform-field-label--type-inline'>3 mnd.<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_6_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_6' type='radio' value='4'  id='choice_6_6_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_6_1' id='label_6_6_1' class='gform-field-label gform-field-label--type-inline'>4 mnd.<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_6_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_6' type='radio' value='5'  id='choice_6_6_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_6_2' id='label_6_6_2' class='gform-field-label gform-field-label--type-inline'>5 mnd.<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_6_3'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_6' type='radio' value='6'  id='choice_6_6_3' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_6_3' id='label_6_6_3' class='gform-field-label gform-field-label--type-inline'>6 mnd.<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_6_25\" class=\"gfield gfield--type-section gsection field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><h3 class=\"gsection_title\"><\/h3><\/div><fieldset id=\"field_6_7\" class=\"gfield gfield--type-checkbox gfield--type-choice field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Vil du f\u00e5 bekreftelse tilsendt p\u00e5 e-post?<\/legend><div class='ginput_container ginput_container_checkbox'><div class='gfield_checkbox ' id='input_6_7'><div class='gchoice gchoice_6_7_1'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_7.1' type='checkbox'  value='Ja, takk!'  id='choice_6_7_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_6_7_1' id='label_6_7_1' class='gform-field-label gform-field-label--type-inline'>Ja, takk!<\/label>\n\t\t\t\t\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_6_8\" class=\"gfield gfield--type-email field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_6_8'>Skriv inn epost-adresse<\/label><div class='ginput_container ginput_container_email'>\n                            <input name='input_8' id='input_6_8' type='email' value='' class='large'     aria-invalid=\"false\"  \/>\n                        <\/div><\/div><div id=\"field_6_17\" class=\"gfield gfield--type-section gsection field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><h3 class=\"gsection_title\"><\/h3><\/div><div id=\"field_6_9\" class=\"gfield gfield--type-textarea field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_6_9'>Kan du fortelle mer om hva du \u00f8nsker deg?<\/label><div class='ginput_container ginput_container_textarea'><textarea name='input_9' id='input_6_9' class='textarea small'    placeholder='F.eks. f\u00f8ringer om en gitt sjanger eller et spesielt emne. Beskriv gjerne litt mer om hvem pakken er for.'  aria-invalid=\"false\"   rows='10' cols='50'><\/textarea><\/div><\/div><div id=\"field_6_19\" class=\"gfield gfield--type-number gfield--width-half gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_6_19'>Biblioteknummer (kun siffer)<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_number'><input name='input_19' id='input_6_19' type='number' step='any'   value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"  \/><\/div><\/div><div id=\"field_6_24\" class=\"gfield gfield--type-text gfield--width-half gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_6_24'>Passord<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_24' id='input_6_24' type='password' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_6_23\" class=\"gfield gfield--type-html gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><p>Biblioteket ditt m\u00e5 ha biblioteknummer og passord fra BaseBibliotek for \u00e5 l\u00e5ne. Kontakt oss om du har sp\u00f8rsm\u00e5l.<\/p>\n\n<p>\u00d8nsker du \u00e5 l\u00e5ne b\u00f8ker privat, m\u00e5 du ta kontakt med ditt n\u00e6rmeste bibliotek for \u00e5 gj\u00f8re en bestilling, eller bestille fjernl\u00e5n via <a href=\"https:\/\/bibsok.no\/\">Biblioteks\u00f8k<\/a>  <\/p><\/div><div id=\"field_6_26\" class=\"gfield gfield--type-hidden gform_hidden field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class='ginput_container ginput_container_text'><input name='input_26' id='input_6_26' type='hidden' class='gform_hidden'  aria-invalid=\"false\" value='false' \/><\/div><\/div><\/div><\/div>\n        <div class='gform-footer gform_footer top_label'> <input type='submit' id='gform_submit_button_6' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='Send bestilling'  \/> \n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_6' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_6' id='gform_theme_6' value='gravity-theme' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_6' id='gform_style_settings_6' value='{&quot;inputPrimaryColor&quot;:&quot;#204ce5&quot;}' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_6' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='6' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_6' value='WyJ7XCIyXCI6W1wiNGNhNDc1ZGQxODBkZGYzMDMxZjQ1Mzk2N2E1MjIwNWZcIixcIjk3N2Y2N2U0M2EwYzlhNWQ2MzNjNDg3YTM0MjE2NWNlXCIsXCJiMWNmOTIyOGY1ZWFjMTI1MDE2NGY0ZDcxNTAxNzQ5Y1wiLFwiM2FkOWRkNWQxNWJmZmRlYzkyYjA3MWJkYmYyYjY0M2JcIixcIjNhODZkYzBhNTJiZjRhMmEyYjcxMDgzNGFiY2U1ZmI0XCIsXCI2NTE4MzEzZTdlOGFmMDA0YTdmMWFjMDQyNTZlOWU5OVwiLFwiNjYyMjA3ZmEyYTA5Mjg0ZGJlZjVlODViZmExMGNhYmVcIixcIjQ5Y2YxOTMzNzFmZGNmNTU3ZjdkZDgzMmNlOWQ4MDcwXCIsXCI0MDBmYjhlNzI5MDRjZWExNjVhODYxMzBhN2QxZDNhMVwiLFwiYTczYTlhNGNiMTZjODFjZWJjYjZlOGFhNjlmOWRmZTFcIixcImUxM2UyYjE0ZjNiMWJmZmZhYTkwMjJiN2VjYjEyOGU4XCIsXCJhYTRkZWNiYzYwMmQ5MGFmZGUxMjhlNzg5ZjYxYTNhY1wiLFwiNmIyOTRmZWUzYjM0ZDFjM2Y3Y2IwMjJkMzIyYzQxMWZcIixcIjEwMjFhZjFlZWExNTk3MjY5NmVmMWRiYjc4ZTc3OTZhXCIsXCIxMzliMGYxMmMwMTQ3Njk2NWU0ZDE5NzA4OTAxOWZjY1wiLFwiNzQ5MDg1MGQ4NTRkNmIzYmQ5ZjFjYWI3NmYxNmY3MTBcIixcIjY4OWJhNzY2NWQ3NjYzNmE2MTExMWZmZmQ2ZTM4ODZhXCIsXCJhMmJlZTdhMzVkNjFjZTI0YzM2ZTQzOGU0Yzc3NWJiZVwiLFwiZGVhZmVmY2M5M2E0N2E1NmVhMzNmYjU3NGYyNmI0ODRcIixcImYzNDM5NDllOTdkZWQzMThkYjc5N2FmNDRmOTc3MzY3XCIsXCI3MmYyYWZkZWVkZDg5ZGJmNDdlZmRmM2I3ZTgxNmI0MlwiLFwiMzliMzBmMjYwNzI1ZTFlM2I4NTllNjVmZGI5ZWU2YzhcIixcImE3MzA1MWMwNjkzYjMyZTQ1MTRjZTQ2MWVkMjY2NWFhXCIsXCJhNzk5MzIzZGJiZjQ0MTZhMTViZTQ4ZmY2ZjNiMTVmNVwiLFwiOWEyN2I4OWMyZmYzZmQ5MGQ3YzcyYjFmOTI3OWFmYzBcIixcImYyYTI3MGJiMGE0Y2I2YzJhZTliMTQ1MGYwNGUyZDBhXCIsXCI1MTI0MzZhZjNhMmIxMjYwZTBkYTExZWRlZTAyZTI0ZVwiLFwiOTcwN2E0ODYyOWRlM2Y4YmFlMmY4MGM1MzlhNGEyZjBcIixcIjFlYjUyNWU2OWQyZWM1NDZhYjg4YWIyZDExOGRjNjAxXCIsXCI3MWYwMGVlNzRlOTRlZmQ2ZTAxMzE2MDM4Y2Y0ODM4M1wiLFwiNDZjNzI0MzQ2NmE5ZTVjZmEyYmZlYzQxMWQyYTEzOGVcIixcImM4MjZmY2E1Y2E3ZGE2ZmJiNmJkMTU5MTk3YjUyNmRjXCIsXCJmZGY0NDhkZjg2NDVmYjg1ZjgwOWI4OTczMGQ4NDZhN1wiLFwiZjcyMmIyYmQzMjA0YWM2YTZhOTM2ZTM5ZGMxY2VjMDdcIixcImE4ODk5OWEzYmQxYzg3ZWU4NjRkMmE1MTlkNDAwNWVhXCIsXCIxODE4NjI3ZDRiYzJjMjQzMDkzNzczYWY0MWNhNTlmYVwiLFwiMTQxZjJiMjQ5MWY0OTUxYjgxOWY0Mzg1YjBiNjFlZTBcIixcImMzZDVlNzMyYzlmMTAxMzJhZGI2MTRmZDliNmI3N2I0XCIsXCI0MDBhN2IwOWU3MzA5MWMxN2VmMjJhNmJkZGQ4ODFjMFwiLFwiYmJjNzg5MzBhOTg3MGI2MGNhYWQ4YTA4ZTcyMmYwMDJcIixcIjc0Mzg2NGZjMjI3NjhjMjM5NzQ5NGY0NjdmZjlhMWVmXCIsXCIxYmI4ZTZlNTY2Mjc4ZmExZTAwNmNmZWEzZmQzNTZkNlwiLFwiNGU4OTlhMDM3ZDQ2Y2MyOGEyNjZlYzE1OTM3OGRhNjBcIixcImIxNzUyZmUxM2RiODA4NDk4YzhkOTU0Y2ZiYjRjODU3XCIsXCJmYjlmZDAyYWRjYmMxOGNlN2Q3YzhmNWEyMjkyNjEzZlwiLFwiNWUyMDg0Mjk2MGM4MmNjZGVlNTE5ODJkZTJhNjMzYjJcIixcImM5YmJiYmM0Y2FiMzJiNjBjOWE2MjYxZWZhYWVjNTI0XCIsXCI0MDA0NTM4YTY2Mjg2YTRmNTc0NWJhNWRiMWEyZjBlOVwiLFwiYzQyNGFjYzI3YmRmZjZkNGU0NGI2NjQ4Y2I2YjAyOTBcIixcIjJhZmY3NTBkMzY0Y2Y3N2Q5MWQ1YjUxODAxM2YzYTFmXCIsXCJhNjkzODhiZTMzZTE2MDhiZWEwZTdlM2QyY2MzM2VjN1wiLFwiMDliNmI3YWE0ODVlNmE2NGZjODBkNTg5NjIzMzgxNmJcIixcIjkxMDA2N2QwNzBhZTZhZjdjZjE5ODdjOWY1ZjkyMzk5XCIsXCI0OGRlMTA3ZjdkYWIzYzZlZTJiMDlhMmI1YTdkODVjYVwiLFwiOGUyZWJhNDE1OGFhY2E4OTA2ZmRlNjZiYjE5MTMyMWFcIixcIjA1YWFiOGE0MTFiMDc1NTY1NmQ5OGM5ODFjMDgzNzA2XCIsXCI4NGNiODQ1YzJhOTQwNTliNGE3Y2NhMWRiOGVkNDhjNFwiLFwiNDg1MTkxZjRjYTA1ZDBmMGE2ZjQwMDI0NGIxNzY2MWFcIixcImRjMTA3YTBmM2Q5ZjRhNzJhMzQyODYwZTk2ZDk3Nzk3XCIsXCI5NTY0ZjkxMWY5MTczYmFjMDdhMTc2ZTc4OGExYTE0OFwiLFwiZDE0MmRkZjQwOGNkZGIzMzE5YzM1MmZiN2Q2NjNkNDNcIixcIjQzYmQ2ZmE2MmQwYzcyZmIyNjhhMzg2NjI1MWYyMjliXCIsXCJkMzZhZmZhNGZlYWM2OGZhM2IwYmEzZjcxYWYxODU4ZVwiLFwiNGZlN2ExZmI2ZjZiNDU1MmFmYzUxZWYwNjI0MjNmNzhcIixcImUwMDQ2ZTJlNTU2MDU4ZTgwZmU2OGM4ZTUxNjk3YTM2XCJdLFwiMTBcIjpbXCIxZDExM2FlMmZkOGJlMzYzZGU3NGNhMWNiYWY4OGM5OFwiLFwiMGUyYTUwMDg5ZmIyNzI1YzU3ZTE1MjM3YTRhMDEzZjRcIixcIjJhYzViZGYzOTFlZTcxNTYzMzRkY2FmYjgwZGMwMWJjXCJdLFwiMTJcIjpbXCIxZDExM2FlMmZkOGJlMzYzZGU3NGNhMWNiYWY4OGM5OFwiLFwiMGUyYTUwMDg5ZmIyNzI1YzU3ZTE1MjM3YTRhMDEzZjRcIixcIjJhYzViZGYzOTFlZTcxNTYzMzRkY2FmYjgwZGMwMWJjXCJdLFwiNlwiOltcIjFlYTkxYWIyYmYxZTJmNjlmN2VmY2Q5OTVjMDUyNzY5XCIsXCI3YzYyNzQwNjZlYjRjNzcxMzMzNjc0YmZlN2UyNWY0YlwiLFwiZDBhZjFlNTE5OGJlMjU1NmMyMGE3YjBhNGIzNDJkZjVcIixcImI2YjUxNDRjZTczNjU3YmIzMGI5NjczNmQyZTIxMTg2XCJdfSIsImFlYzY1MGQ3NGQ0YzAwYTIxMGMzYzEzNDQ5YjJiNzQ2Il0=' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_6' id='gform_target_page_number_6' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_6' id='gform_source_page_number_6' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <\/form>\n                        <\/div><script>\ngform.initializeOnLoaded( function() {gformInitSpinner( 6, 'https:\/\/beta.bibliotekutvikling.no\/content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery('#gform_ajax_frame_6').on('load',function(){var contents = jQuery(this).contents().find('*').html();var is_postback = contents.indexOf('GF_AJAX_POSTBACK') >= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find('#gform_wrapper_6');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_6').length > 0;var is_redirect = contents.indexOf('gformRedirect(){') >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery('html').css('margin-top'), 10) + parseInt(jQuery('body').css('margin-top'), 10) + 100;if(is_form){form_content.find('form').css('opacity', 0);jQuery('#gform_wrapper_6').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_6').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_6').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/  }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_6').val();gformInitSpinner( 6, 'https:\/\/beta.bibliotekutvikling.no\/content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [6, current_page]);window['gf_submitting_6'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}jQuery('#gform_wrapper_6').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [6]);window['gf_submitting_6'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_6').text());}else{jQuery('#gform_6').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"6\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_6\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_6\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_6\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 6, current_page );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );} );\n<\/script>\n","protected":false},"excerpt":{"rendered":"<p>Vi h\u00e5ndplukker en eske med b\u00f8ker, film, lydb\u00f8ker og spr\u00e5kkurs ut fra det enkelte biblioteks behov. Bokpakker kan bare l\u00e5nes av bibliotek i Norge<\/p>\n","protected":false},"author":60,"featured_media":1487,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"nb_hide_title":false,"nb_breadcrumb_title_override":"","sub_navigation_option":"","sub_navigation_custom_items":[],"footnotes":""},"class_list":["post-1074","page","type-page","status-publish","has-post-thumbnail","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.1 (Yoast SEO v27.1.1) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>L\u00e5n en bokpakke - Det flerspr\u00e5klige bibliotek<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/beta.bibliotekutvikling.no\/dfb\/lan-en-bokpakke\/\" \/>\n<meta property=\"og:locale\" content=\"nb_NO\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"L\u00e5n en bokpakke\" \/>\n<meta property=\"og:description\" content=\"Vi h\u00e5ndplukker en eske med b\u00f8ker, film, lydb\u00f8ker og spr\u00e5kkurs ut fra det enkelte biblioteks behov. Bokpakker kan bare l\u00e5nes av bibliotek i Norge\" \/>\n<meta property=\"og:url\" content=\"https:\/\/beta.bibliotekutvikling.no\/dfb\/lan-en-bokpakke\/\" \/>\n<meta property=\"og:site_name\" content=\"Det flerspr\u00e5klige bibliotek\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/profile.php?id=100066429046602\" \/>\n<meta property=\"article:modified_time\" content=\"2025-05-05T15:17:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/beta.bibliotekutvikling.no\/content\/uploads\/sites\/17\/2022\/10\/Banner_DFB-lysere.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Ansl. lesetid\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minutt\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/beta.bibliotekutvikling.no\/dfb\/lan-en-bokpakke\/\",\"url\":\"https:\/\/beta.bibliotekutvikling.no\/dfb\/lan-en-bokpakke\/\",\"name\":\"L\u00e5n en bokpakke - Det flerspr\u00e5klige bibliotek\",\"isPartOf\":{\"@id\":\"https:\/\/beta.bibliotekutvikling.no\/dfb\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/beta.bibliotekutvikling.no\/dfb\/lan-en-bokpakke\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/beta.bibliotekutvikling.no\/dfb\/lan-en-bokpakke\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/beta.bibliotekutvikling.no\/content\/uploads\/sites\/17\/2022\/10\/Banner_DFB-lysere.jpg\",\"datePublished\":\"2022-09-28T13:36:01+00:00\",\"dateModified\":\"2025-05-05T15:17:38+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/beta.bibliotekutvikling.no\/dfb\/lan-en-bokpakke\/#breadcrumb\"},\"inLanguage\":\"nb-NO\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/beta.bibliotekutvikling.no\/dfb\/lan-en-bokpakke\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"nb-NO\",\"@id\":\"https:\/\/beta.bibliotekutvikling.no\/dfb\/lan-en-bokpakke\/#primaryimage\",\"url\":\"https:\/\/beta.bibliotekutvikling.no\/content\/uploads\/sites\/17\/2022\/10\/Banner_DFB-lysere.jpg\",\"contentUrl\":\"https:\/\/beta.bibliotekutvikling.no\/content\/uploads\/sites\/17\/2022\/10\/Banner_DFB-lysere.jpg\",\"width\":1920,\"height\":1080},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/beta.bibliotekutvikling.no\/dfb\/lan-en-bokpakke\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Hjem\",\"item\":\"https:\/\/beta.bibliotekutvikling.no\/dfb\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"L\u00e5n en bokpakke\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/beta.bibliotekutvikling.no\/dfb\/#website\",\"url\":\"https:\/\/beta.bibliotekutvikling.no\/dfb\/\",\"name\":\"Det flerspr\u00e5klige bibliotek\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/beta.bibliotekutvikling.no\/dfb\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/beta.bibliotekutvikling.no\/dfb\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"nb-NO\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/beta.bibliotekutvikling.no\/dfb\/#organization\",\"name\":\"Det flerspr\u00e5klige bibliotek\",\"url\":\"https:\/\/beta.bibliotekutvikling.no\/dfb\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"nb-NO\",\"@id\":\"https:\/\/beta.bibliotekutvikling.no\/dfb\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/bibliotekutvikling.no\/content\/uploads\/sites\/17\/2022\/09\/dfb.svg\",\"contentUrl\":\"https:\/\/bibliotekutvikling.no\/content\/uploads\/sites\/17\/2022\/09\/dfb.svg\",\"width\":143,\"height\":65,\"caption\":\"Det flerspr\u00e5klige bibliotek\"},\"image\":{\"@id\":\"https:\/\/beta.bibliotekutvikling.no\/dfb\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/profile.php?id=100066429046602\"]}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"L\u00e5n en bokpakke - Det flerspr\u00e5klige bibliotek","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/beta.bibliotekutvikling.no\/dfb\/lan-en-bokpakke\/","og_locale":"nb_NO","og_type":"article","og_title":"L\u00e5n en bokpakke","og_description":"Vi h\u00e5ndplukker en eske med b\u00f8ker, film, lydb\u00f8ker og spr\u00e5kkurs ut fra det enkelte biblioteks behov. Bokpakker kan bare l\u00e5nes av bibliotek i Norge","og_url":"https:\/\/beta.bibliotekutvikling.no\/dfb\/lan-en-bokpakke\/","og_site_name":"Det flerspr\u00e5klige bibliotek","article_publisher":"https:\/\/www.facebook.com\/profile.php?id=100066429046602","article_modified_time":"2025-05-05T15:17:38+00:00","og_image":[{"width":1920,"height":1080,"url":"https:\/\/beta.bibliotekutvikling.no\/content\/uploads\/sites\/17\/2022\/10\/Banner_DFB-lysere.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Ansl. lesetid":"1 minutt"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/beta.bibliotekutvikling.no\/dfb\/lan-en-bokpakke\/","url":"https:\/\/beta.bibliotekutvikling.no\/dfb\/lan-en-bokpakke\/","name":"L\u00e5n en bokpakke - Det flerspr\u00e5klige bibliotek","isPartOf":{"@id":"https:\/\/beta.bibliotekutvikling.no\/dfb\/#website"},"primaryImageOfPage":{"@id":"https:\/\/beta.bibliotekutvikling.no\/dfb\/lan-en-bokpakke\/#primaryimage"},"image":{"@id":"https:\/\/beta.bibliotekutvikling.no\/dfb\/lan-en-bokpakke\/#primaryimage"},"thumbnailUrl":"https:\/\/beta.bibliotekutvikling.no\/content\/uploads\/sites\/17\/2022\/10\/Banner_DFB-lysere.jpg","datePublished":"2022-09-28T13:36:01+00:00","dateModified":"2025-05-05T15:17:38+00:00","breadcrumb":{"@id":"https:\/\/beta.bibliotekutvikling.no\/dfb\/lan-en-bokpakke\/#breadcrumb"},"inLanguage":"nb-NO","potentialAction":[{"@type":"ReadAction","target":["https:\/\/beta.bibliotekutvikling.no\/dfb\/lan-en-bokpakke\/"]}]},{"@type":"ImageObject","inLanguage":"nb-NO","@id":"https:\/\/beta.bibliotekutvikling.no\/dfb\/lan-en-bokpakke\/#primaryimage","url":"https:\/\/beta.bibliotekutvikling.no\/content\/uploads\/sites\/17\/2022\/10\/Banner_DFB-lysere.jpg","contentUrl":"https:\/\/beta.bibliotekutvikling.no\/content\/uploads\/sites\/17\/2022\/10\/Banner_DFB-lysere.jpg","width":1920,"height":1080},{"@type":"BreadcrumbList","@id":"https:\/\/beta.bibliotekutvikling.no\/dfb\/lan-en-bokpakke\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Hjem","item":"https:\/\/beta.bibliotekutvikling.no\/dfb\/"},{"@type":"ListItem","position":2,"name":"L\u00e5n en bokpakke"}]},{"@type":"WebSite","@id":"https:\/\/beta.bibliotekutvikling.no\/dfb\/#website","url":"https:\/\/beta.bibliotekutvikling.no\/dfb\/","name":"Det flerspr\u00e5klige bibliotek","description":"","publisher":{"@id":"https:\/\/beta.bibliotekutvikling.no\/dfb\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/beta.bibliotekutvikling.no\/dfb\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"nb-NO"},{"@type":"Organization","@id":"https:\/\/beta.bibliotekutvikling.no\/dfb\/#organization","name":"Det flerspr\u00e5klige bibliotek","url":"https:\/\/beta.bibliotekutvikling.no\/dfb\/","logo":{"@type":"ImageObject","inLanguage":"nb-NO","@id":"https:\/\/beta.bibliotekutvikling.no\/dfb\/#\/schema\/logo\/image\/","url":"https:\/\/bibliotekutvikling.no\/content\/uploads\/sites\/17\/2022\/09\/dfb.svg","contentUrl":"https:\/\/bibliotekutvikling.no\/content\/uploads\/sites\/17\/2022\/09\/dfb.svg","width":143,"height":65,"caption":"Det flerspr\u00e5klige bibliotek"},"image":{"@id":"https:\/\/beta.bibliotekutvikling.no\/dfb\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/profile.php?id=100066429046602"]}]}},"_links":{"self":[{"href":"https:\/\/beta.bibliotekutvikling.no\/dfb\/wp-json\/wp\/v2\/pages\/1074","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/beta.bibliotekutvikling.no\/dfb\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/beta.bibliotekutvikling.no\/dfb\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/beta.bibliotekutvikling.no\/dfb\/wp-json\/wp\/v2\/users\/60"}],"replies":[{"embeddable":true,"href":"https:\/\/beta.bibliotekutvikling.no\/dfb\/wp-json\/wp\/v2\/comments?post=1074"}],"version-history":[{"count":4,"href":"https:\/\/beta.bibliotekutvikling.no\/dfb\/wp-json\/wp\/v2\/pages\/1074\/revisions"}],"predecessor-version":[{"id":3359,"href":"https:\/\/beta.bibliotekutvikling.no\/dfb\/wp-json\/wp\/v2\/pages\/1074\/revisions\/3359"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/beta.bibliotekutvikling.no\/dfb\/wp-json\/wp\/v2\/media\/1487"}],"wp:attachment":[{"href":"https:\/\/beta.bibliotekutvikling.no\/dfb\/wp-json\/wp\/v2\/media?parent=1074"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}