View | Details | Raw Unified | Return to bug 18984
Collapse All | Expand All

(-)a/C4/Biblio.pm (-9 / +9 lines)
Lines 1265-1271 sub GetMarcPrice { Link Here
1265
    my @listtags;
1265
    my @listtags;
1266
    my $subfield;
1266
    my $subfield;
1267
    
1267
    
1268
    if ( $marcflavour eq "MARC21" || $marcflavour eq "NORMARC" ) {
1268
    if ( $marcflavour eq "MARC21" ) {
1269
        @listtags = ('345', '020');
1269
        @listtags = ('345', '020');
1270
        $subfield="c";
1270
        $subfield="c";
1271
    } elsif ( $marcflavour eq "UNIMARC" ) {
1271
    } elsif ( $marcflavour eq "UNIMARC" ) {
Lines 1461-1469 sub GetMarcControlnumber { Link Here
1461
        return;
1461
        return;
1462
    }
1462
    }
1463
    my $controlnumber = "";
1463
    my $controlnumber = "";
1464
    # Control number or Record identifier are the same field in MARC21, UNIMARC and NORMARC
1464
    # Control number or Record identifier are the same field in MARC21 and UNIMARC
1465
    # Keep $marcflavour for possible later use
1465
    # Keep $marcflavour for possible later use
1466
    if ($marcflavour eq "MARC21" || $marcflavour eq "UNIMARC" || $marcflavour eq "NORMARC") {
1466
    if ($marcflavour eq "MARC21" || $marcflavour eq "UNIMARC" ) {
1467
        my $controlnumberField = $record->field('001');
1467
        my $controlnumberField = $record->field('001');
1468
        if ($controlnumberField) {
1468
        if ($controlnumberField) {
1469
            $controlnumber = $controlnumberField->data();
1469
            $controlnumber = $controlnumberField->data();
Lines 1525-1531 sub GetMarcISSN { Link Here
1525
    if ( $marcflavour eq "UNIMARC" ) {
1525
    if ( $marcflavour eq "UNIMARC" ) {
1526
        $scope = '011';
1526
        $scope = '011';
1527
    }
1527
    }
1528
    else {    # assume MARC21 or NORMARC
1528
    else {    # assume MARC21
1529
        $scope = '022';
1529
        $scope = '022';
1530
    }
1530
    }
1531
    my @marcissns;
1531
    my @marcissns;
Lines 1556-1562 sub GetMarcSubjects { Link Here
1556
        $mintag = "600";
1556
        $mintag = "600";
1557
        $maxtag = "611";
1557
        $maxtag = "611";
1558
        $fields_filter = '6..';
1558
        $fields_filter = '6..';
1559
    } else { # marc21/normarc
1559
    } else { # marc21
1560
        $mintag = "600";
1560
        $mintag = "600";
1561
        $maxtag = "699";
1561
        $maxtag = "699";
1562
        $fields_filter = '6..';
1562
        $fields_filter = '6..';
Lines 1650-1656 sub GetMarcAuthors { Link Here
1650
        $mintag = "700";
1650
        $mintag = "700";
1651
        $maxtag = "712";
1651
        $maxtag = "712";
1652
        $fields_filter = '7..';
1652
        $fields_filter = '7..';
1653
    } else { # marc21/normarc
1653
    } else { # marc21
1654
        $mintag = "700";
1654
        $mintag = "700";
1655
        $maxtag = "720";
1655
        $maxtag = "720";
1656
        $fields_filter = '7..';
1656
        $fields_filter = '7..';
Lines 1805-1811 sub GetMarcSeries { Link Here
1805
        $mintag = "225";
1805
        $mintag = "225";
1806
        $maxtag = "225";
1806
        $maxtag = "225";
1807
        $fields_filter = '2..';
1807
        $fields_filter = '2..';
1808
    } else {    # marc21/normarc
1808
    } else {    # marc21
1809
        $mintag = "440";
1809
        $mintag = "440";
1810
        $maxtag = "490";
1810
        $maxtag = "490";
1811
        $fields_filter = '4..';
1811
        $fields_filter = '4..';
Lines 2001-2007 sub PrepHostMarcField { Link Here
2001
    my $item = Koha::Items->find($hostitemnumber);
2001
    my $item = Koha::Items->find($hostitemnumber);
2002
2002
2003
	my $hostmarcfield;
2003
	my $hostmarcfield;
2004
    if ( $marcflavour eq "MARC21" || $marcflavour eq "NORMARC" ) {
2004
    if ( $marcflavour eq "MARC21" ) {
2005
	
2005
	
2006
        #main entry
2006
        #main entry
2007
        my $mainentry;
2007
        my $mainentry;
Lines 3019-3025 sub prepare_host_field { Link Here
3019
    my %sfd;
3019
    my %sfd;
3020
    my $field;
3020
    my $field;
3021
    my $host_field;
3021
    my $host_field;
3022
    if ( $marcflavour eq 'MARC21' || $marcflavour eq 'NORMARC' ) {
3022
    if ( $marcflavour eq 'MARC21' ) {
3023
        if ( $field = $host->field('100') || $host->field('110') || $host->field('11') ) {
3023
        if ( $field = $host->field('100') || $host->field('110') || $host->field('11') ) {
3024
            my $s = $field->as_string('ab');
3024
            my $s = $field->as_string('ab');
3025
            if ($s) {
3025
            if ($s) {
(-)a/C4/Charset.pm (-4 / +4 lines)
Lines 256-275 sub MarcToUTF8Record { Link Here
256
    # If we do not know the source encoding, try some guesses
256
    # If we do not know the source encoding, try some guesses
257
    # as follows:
257
    # as follows:
258
    #   1. Record is UTF-8 already.
258
    #   1. Record is UTF-8 already.
259
    #   2. If MARC flavor is MARC21 or NORMARC, then
259
    #   2. If MARC flavor is MARC21, then
260
    #      a. record is MARC-8
260
    #      a. record is MARC-8
261
    #      b. record is ISO-8859-1
261
    #      b. record is ISO-8859-1
262
    #   3. If MARC flavor is UNIMARC, then
262
    #   3. If MARC flavor is UNIMARC, then
263
    if (not defined $source_encoding) {
263
    if (not defined $source_encoding) {
264
        if ($marc_blob_is_utf8) {
264
        if ($marc_blob_is_utf8) {
265
            # note that for MARC21/NORMARC we are not bothering to check
265
            # note that for MARC21 we are not bothering to check
266
            # if the Leader/09 is set to 'a' or not -- because
266
            # if the Leader/09 is set to 'a' or not -- because
267
            # of problems with various ILSs (including Koha in the
267
            # of problems with various ILSs (including Koha in the
268
            # past, alas), this just is not trustworthy.
268
            # past, alas), this just is not trustworthy.
269
            SetMarcUnicodeFlag($marc_record, $marc_flavour);
269
            SetMarcUnicodeFlag($marc_record, $marc_flavour);
270
            return $marc_record, 'UTF-8', [];
270
            return $marc_record, 'UTF-8', [];
271
        } else {
271
        } else {
272
            if ($marc_flavour eq 'MARC21' || $marc_flavour eq 'NORMARC') {
272
            if ($marc_flavour eq 'MARC21') {
273
                return _default_marc21_charconv_to_utf8($marc_record, $marc_flavour);
273
                return _default_marc21_charconv_to_utf8($marc_record, $marc_flavour);
274
            } elsif ($marc_flavour =~/UNIMARC/) {
274
            } elsif ($marc_flavour =~/UNIMARC/) {
275
                return _default_unimarc_charconv_to_utf8($marc_record, $marc_flavour);
275
                return _default_unimarc_charconv_to_utf8($marc_record, $marc_flavour);
Lines 324-330 sub SetMarcUnicodeFlag { Link Here
324
    my $marc_flavour = shift; # || C4::Context->preference("marcflavour");
324
    my $marc_flavour = shift; # || C4::Context->preference("marcflavour");
325
325
326
    $marc_record->encoding('UTF-8');
326
    $marc_record->encoding('UTF-8');
327
    if ($marc_flavour eq 'MARC21' || $marc_flavour eq 'NORMARC') {
327
    if ($marc_flavour eq 'MARC21') {
328
        my $leader = $marc_record->leader();
328
        my $leader = $marc_record->leader();
329
        substr($leader, 9, 1) = 'a';
329
        substr($leader, 9, 1) = 'a';
330
        $marc_record->leader($leader); 
330
        $marc_record->leader($leader); 
(-)a/C4/HTML5Media.pm (-1 / +1 lines)
Lines 61-67 sub gethtml5media { Link Here
61
            $HTML5Media{protocol} = 'http';
61
            $HTML5Media{protocol} = 'http';
62
        }
62
        }
63
        elsif ( $HTML5Media_field->indicator(1) eq '7' ) {
63
        elsif ( $HTML5Media_field->indicator(1) eq '7' ) {
64
            if ($marcflavour eq 'MARC21' || $marcflavour eq 'NORMARC') {
64
            if ($marcflavour eq 'MARC21') {
65
                $HTML5Media{protocol} = $HTML5Media_field->subfield('2');
65
                $HTML5Media{protocol} = $HTML5Media_field->subfield('2');
66
            }
66
            }
67
            elsif ($marcflavour eq 'UNIMARC') {
67
            elsif ($marcflavour eq 'UNIMARC') {
(-)a/C4/Heading.pm (-1 lines)
Lines 245-251 depending on the selected MARC flavour. Link Here
245
245
246
sub _marc_format_handler {
246
sub _marc_format_handler {
247
    my $marcflavour = uc shift;
247
    my $marcflavour = uc shift;
248
    $marcflavour = 'MARC21' if ( $marcflavour eq 'NORMARC' );
249
    my $pname = "C4::Heading::$marcflavour";
248
    my $pname = "C4::Heading::$marcflavour";
250
    load $pname;
249
    load $pname;
251
    return $pname->new();
250
    return $pname->new();
(-)a/C4/Installer.pm (-4 / +3 lines)
Lines 424-433 sub load_sql_in_order { Link Here
424
Set the 'marcflavour' system preference.  The incoming
424
Set the 'marcflavour' system preference.  The incoming
425
C<$marcflavour> references to a subdirectory of
425
C<$marcflavour> references to a subdirectory of
426
installer/data/$dbms/$lang/marcflavour, and is
426
installer/data/$dbms/$lang/marcflavour, and is
427
normalized to MARC21, UNIMARC or NORMARC.
427
normalized to MARC21 or UNIMARC.
428
428
429
FIXME: this method assumes that the MARC flavour will be either
429
FIXME: this method assumes that the MARC flavour will be either
430
MARC21, UNIMARC or NORMARC.
430
MARC21 or UNIMARC.
431
431
432
=cut
432
=cut
433
433
Lines 439-448 sub set_marcflavour_syspref { Link Here
439
    # marc_cleaned finds the marcflavour, without the variant.
439
    # marc_cleaned finds the marcflavour, without the variant.
440
    my $marc_cleaned = 'MARC21';
440
    my $marc_cleaned = 'MARC21';
441
    $marc_cleaned = 'UNIMARC' if $marcflavour =~ /unimarc/i;
441
    $marc_cleaned = 'UNIMARC' if $marcflavour =~ /unimarc/i;
442
    $marc_cleaned = 'NORMARC' if $marcflavour =~ /normarc/i;
443
    my $request =
442
    my $request =
444
        $self->{'dbh'}->prepare(
443
        $self->{'dbh'}->prepare(
445
          "INSERT IGNORE INTO `systempreferences` (variable,value,explanation,options,type) VALUES('marcflavour','$marc_cleaned','Define global MARC flavor (MARC21, UNIMARC or NORMARC) used for character encoding','MARC21|UNIMARC|NORMARC','Choice');"
444
          "INSERT IGNORE INTO `systempreferences` (variable,value,explanation,options,type) VALUES('marcflavour','$marc_cleaned','Define global MARC flavor (MARC21 or UNIMARC) used for character encoding','MARC21|UNIMARC','Choice');"
446
        );
445
        );
447
    $request->execute;
446
    $request->execute;
448
}
447
}
(-)a/C4/Items.pm (-3 / +2 lines)
Lines 894-901 sub GetHostItemsInfo { Link Here
894
    }
894
    }
895
895
896
    my @fields;
896
    my @fields;
897
    if( C4::Context->preference('marcflavour') eq 'MARC21' ||
897
    if( C4::Context->preference('marcflavour') eq 'MARC21' ) {
898
      C4::Context->preference('marcflavour') eq 'NORMARC') {
899
        @fields = $record->field('773');
898
        @fields = $record->field('773');
900
    } elsif( C4::Context->preference('marcflavour') eq 'UNIMARC') {
899
    } elsif( C4::Context->preference('marcflavour') eq 'UNIMARC') {
901
        @fields = $record->field('461');
900
        @fields = $record->field('461');
Lines 940-946 sub get_hostitemnumbers_of { Link Here
940
    my ( @returnhostitemnumbers, $tag, $biblio_s, $item_s );
939
    my ( @returnhostitemnumbers, $tag, $biblio_s, $item_s );
941
940
942
    my $marcflavor = C4::Context->preference('marcflavour');
941
    my $marcflavor = C4::Context->preference('marcflavour');
943
    if ( $marcflavor eq 'MARC21' || $marcflavor eq 'NORMARC' ) {
942
    if ( $marcflavor eq 'MARC21' ) {
944
        $tag      = '773';
943
        $tag      = '773';
945
        $biblio_s = '0';
944
        $biblio_s = '0';
946
        $item_s   = '9';
945
        $item_s   = '9';
(-)a/C4/Record.pm (-18 / +7 lines)
Lines 231-237 EXAMPLE Link Here
231
Convert MARC or MARCXML to Dublin Core metadata (XSLT Transformation),
231
Convert MARC or MARCXML to Dublin Core metadata (XSLT Transformation),
232
optionally can get an XML directly from biblio_metadata
232
optionally can get an XML directly from biblio_metadata
233
without item information. This method take into consideration the syspref
233
without item information. This method take into consideration the syspref
234
'marcflavour' (UNIMARC, MARC21 and NORMARC).
234
'marcflavour' (UNIMARC or MARC21).
235
Return an XML file with the format defined in C<$format>
235
Return an XML file with the format defined in C<$format>
236
236
237
C<$marc> - an ISO-2709 scalar or MARC::Record object
237
C<$marc> - an ISO-2709 scalar or MARC::Record object
Lines 265-287 sub marc2dcxml { Link Here
265
        $marcxml = $xml;
265
        $marcxml = $xml;
266
    }
266
    }
267
267
268
    # only proceed if MARC21 or UNIMARC; else clause is executed if marcflavour set it to NORMARC
268
    eval { $record = MARC::Record->new_from_xml(
269
    # generate MARC::Record object to see if not a marcxml record
269
                     $marcxml,
270
    unless ( C4::Context->preference('marcflavour') eq 'NORMARC' ) {
270
                     'UTF-8',
271
        eval { $record = MARC::Record->new_from_xml(
271
                     C4::Context->preference('marcflavour')
272
                         $marcxml,
272
           );
273
                         'UTF-8',
273
    };
274
                         C4::Context->preference('marcflavour')
275
               );
276
        };
277
    } else {
278
        eval { $record = MARC::Record->new_from_xml(
279
                         $marcxml,
280
                        'UTF-8',
281
                        'MARC21'
282
               );
283
        };
284
    }
285
274
286
    # conversion to MARC::Record object failed
275
    # conversion to MARC::Record object failed
287
    if ( $@ ) {
276
    if ( $@ ) {
(-)a/C4/Search.pm (-1 / +1 lines)
Lines 1741-1747 sub searchResults { Link Here
1741
        # adding linked items that belong to host records
1741
        # adding linked items that belong to host records
1742
        if ( C4::Context->preference('EasyAnalyticalRecords') ) {
1742
        if ( C4::Context->preference('EasyAnalyticalRecords') ) {
1743
            my $analyticsfield = '773';
1743
            my $analyticsfield = '773';
1744
            if ($marcflavor eq 'MARC21' || $marcflavor eq 'NORMARC') {
1744
            if ($marcflavor eq 'MARC21') {
1745
                $analyticsfield = '773';
1745
                $analyticsfield = '773';
1746
            } elsif ($marcflavor eq 'UNIMARC') {
1746
            } elsif ($marcflavor eq 'UNIMARC') {
1747
                $analyticsfield = '461';
1747
                $analyticsfield = '461';
(-)a/C4/XSLT.pm (-1 / +1 lines)
Lines 79-85 sub transformMARCXML4XSLT { Link Here
79
                my @new_subfields = ();
79
                my @new_subfields = ();
80
                for my $subfield ( $field->subfields() ) {
80
                for my $subfield ( $field->subfields() ) {
81
                    my ( $letter, $value ) = @$subfield;
81
                    my ( $letter, $value ) = @$subfield;
82
                    # Replace the field value with the authorised value *except* for MARC21/NORMARC field 942$n (suppression in opac)
82
                    # Replace the field value with the authorised value *except* for MARC21 field 942$n (suppression in opac)
83
                    if ( !( $tag eq '942' && $subfield->[0] eq 'n' ) || $marcflavour eq 'UNIMARC' ) {
83
                    if ( !( $tag eq '942' && $subfield->[0] eq 'n' ) || $marcflavour eq 'UNIMARC' ) {
84
                        $value = GetAuthorisedValueDesc( $tag, $letter, $value, '', $tagslib, undef, $opac )
84
                        $value = GetAuthorisedValueDesc( $tag, $letter, $value, '', $tagslib, undef, $opac )
85
                            if $av->{ $tag }->{ $letter };
85
                            if $av->{ $tag }->{ $letter };
(-)a/Koha/Biblio.pm (-1 / +1 lines)
Lines 385-391 sub host_items { Link Here
385
385
386
    my $marcflavour = C4::Context->preference("marcflavour");
386
    my $marcflavour = C4::Context->preference("marcflavour");
387
    my $analyticfield = '773';
387
    my $analyticfield = '773';
388
    if ( $marcflavour eq 'MARC21' || $marcflavour eq 'NORMARC' ) {
388
    if ( $marcflavour eq 'MARC21' ) {
389
        $analyticfield = '773';
389
        $analyticfield = '773';
390
    }
390
    }
391
    elsif ( $marcflavour eq 'UNIMARC' ) {
391
    elsif ( $marcflavour eq 'UNIMARC' ) {
(-)a/Koha/SearchEngine/Elasticsearch.pm (-2 / +2 lines)
Lines 241-247 sub get_elasticsearch_mappings { Link Here
241
=head2 raw_elasticsearch_mappings
241
=head2 raw_elasticsearch_mappings
242
242
243
Return elasticsearch mapping as it is in database.
243
Return elasticsearch mapping as it is in database.
244
marc_type: marc21|unimarc|normarc
244
marc_type: marc21|unimarc
245
245
246
$raw_mappings = raw_elasticsearch_mappings( $marc_type )
246
$raw_mappings = raw_elasticsearch_mappings( $marc_type )
247
247
Lines 1145-1151 to be included in that sort. Link Here
1145
=item C<$marc_type>
1145
=item C<$marc_type>
1146
1146
1147
A string that indicates the MARC type that this mapping is for, e.g. 'marc21',
1147
A string that indicates the MARC type that this mapping is for, e.g. 'marc21',
1148
'unimarc', 'normarc'.
1148
'unimarc'.
1149
1149
1150
=item C<$marc_field>
1150
=item C<$marc_field>
1151
1151
(-)a/Koha/pdfformat/layout2pages.pm (-1 / +1 lines)
Lines 80-86 sub printorders { Link Here
80
                    ( $line->{publishercode} ? ' published by '. $line->{publishercode} : '') .
80
                    ( $line->{publishercode} ? ' published by '. $line->{publishercode} : '') .
81
                    ( $line->{publicationyear} ? ', '. $line->{publicationyear} : '');
81
                    ( $line->{publicationyear} ? ', '. $line->{publicationyear} : '');
82
            }
82
            }
83
            else { # MARC21, NORMARC
83
            else { # MARC21
84
                $titleinfo =  $line->{title} . " " . $line->{author} .
84
                $titleinfo =  $line->{title} . " " . $line->{author} .
85
                    ( $line->{isbn} ? " ISBN: " . $line->{isbn} : '' ) .
85
                    ( $line->{isbn} ? " ISBN: " . $line->{isbn} : '' ) .
86
                    ( $line->{en} ? " EN: " . $line->{en} : '' ) .
86
                    ( $line->{en} ? " EN: " . $line->{en} : '' ) .
(-)a/Koha/pdfformat/layout2pagesde.pm (-1 / +1 lines)
Lines 79-85 sub printorders { Link Here
79
                    ( $line->{publishercode} ? ' Verlag: '. $line->{publishercode} : '') .
79
                    ( $line->{publishercode} ? ' Verlag: '. $line->{publishercode} : '') .
80
                    ( $line->{publicationyear} ? ', '. $line->{publicationyear} : '');
80
                    ( $line->{publicationyear} ? ', '. $line->{publicationyear} : '');
81
            }
81
            }
82
            else { # MARC21, NORMARC
82
            else { # MARC21
83
                $titleinfo =  $line->{title} . " " . $line->{author} .
83
                $titleinfo =  $line->{title} . " " . $line->{author} .
84
                    ( $line->{isbn} ? " ISBN: " . $line->{isbn} : '' ) .
84
                    ( $line->{isbn} ? " ISBN: " . $line->{isbn} : '' ) .
85
                    ( $line->{en} ? " EN: " . $line->{en} : '' ) .
85
                    ( $line->{en} ? " EN: " . $line->{en} : '' ) .
(-)a/Koha/pdfformat/layout3pages.pm (-1 / +1 lines)
Lines 103-109 sub printorders { Link Here
103
                    ( $line->{publishercode} ? ' published by '. $line->{publishercode} : '') .
103
                    ( $line->{publishercode} ? ' published by '. $line->{publishercode} : '') .
104
                    ( $line->{publicationyear} ? ', '. $line->{publicationyear} : '');
104
                    ( $line->{publicationyear} ? ', '. $line->{publicationyear} : '');
105
            }
105
            }
106
            else { # MARC21, NORMARC
106
            else { # MARC21
107
                $titleinfo =  $line->{title} . " " . $line->{author} .
107
                $titleinfo =  $line->{title} . " " . $line->{author} .
108
                    ( $line->{isbn} ? " ISBN: " . $line->{isbn} : '' ) .
108
                    ( $line->{isbn} ? " ISBN: " . $line->{isbn} : '' ) .
109
                    ( $line->{en} ? " EN: " . $line->{en} : '' ) .
109
                    ( $line->{en} ? " EN: " . $line->{en} : '' ) .
(-)a/Koha/pdfformat/layout3pagesfr.pm (-1 / +1 lines)
Lines 104-110 sub printorders { Link Here
104
                    ( $line->{publishercode} ? ' publié par '. $line->{publishercode} : '') .
104
                    ( $line->{publishercode} ? ' publié par '. $line->{publishercode} : '') .
105
                    ( $line->{publicationyear} ? ', '. $line->{publicationyear} : '');
105
                    ( $line->{publicationyear} ? ', '. $line->{publicationyear} : '');
106
            }
106
            }
107
            else { # MARC21, NORMARC
107
            else { # MARC21
108
                $titleinfo =  $line->{title} . " " . $line->{author} .
108
                $titleinfo =  $line->{title} . " " . $line->{author} .
109
                    ( $line->{isbn} ? " ISBN : " . $line->{isbn} : '' ) .
109
                    ( $line->{isbn} ? " ISBN : " . $line->{isbn} : '' ) .
110
                    ( $line->{en} ? " EN : " . $line->{en} : '' ) .
110
                    ( $line->{en} ? " EN : " . $line->{en} : '' ) .
(-)a/Makefile.PL (-3 / +3 lines)
Lines 83-89 Makefile.PL - Koha packager and installer Link Here
83
    --db_name                    Database name (e.g. koha)
83
    --db_name                    Database name (e.g. koha)
84
    --db_user                    Database user (e.g. kohaadmin)
84
    --db_user                    Database user (e.g. kohaadmin)
85
    --db_pass                    Database password (e.g. katikoan)
85
    --db_pass                    Database password (e.g. katikoan)
86
    --zebra_marc_format          Zebra MARC format (marc21, normarc, unimarc)
86
    --zebra_marc_format          Zebra MARC format (marc21, unimarc)
87
    --zebra_language             Zebra language (e.g. en)
87
    --zebra_language             Zebra language (e.g. en)
88
    --zebra_tokenizer            Zebra tokenizer (chr, icu)
88
    --zebra_tokenizer            Zebra tokenizer (chr, icu)
89
    --zebra_user                 Zebra user (e.g. kohauser)
89
    --zebra_user                 Zebra user (e.g. kohauser)
Lines 565-571 my %valid_config_values = ( Link Here
565
  'DB_TYPE' => { 'mysql' => 1, 'Pg' => 1 },
565
  'DB_TYPE' => { 'mysql' => 1, 'Pg' => 1 },
566
  'DB_USE_TLS' => {'yes', 'no'},
566
  'DB_USE_TLS' => {'yes', 'no'},
567
  'INSTALL_SRU' => { 'yes' => 1, 'no' => 1 },
567
  'INSTALL_SRU' => { 'yes' => 1, 'no' => 1 },
568
  'ZEBRA_MARC_FORMAT' => { 'marc21' => 1, 'normarc' => 1, 'unimarc' => 1 }, # FIXME should generate from contents of distributation
568
  'ZEBRA_MARC_FORMAT' => { 'marc21' => 1, 'unimarc' => 1 }, # FIXME should generate from contents of distributation
569
  'ZEBRA_LANGUAGE'    => { 'cs' => 1, 'el' => 1, 'en' => 1, 'es' => 1, 'fr' => 1, 'nb' => 1, 'ru' => 1, 'uk' => 1 }, # FIXME should generate from contents of distribution
569
  'ZEBRA_LANGUAGE'    => { 'cs' => 1, 'el' => 1, 'en' => 1, 'es' => 1, 'fr' => 1, 'nb' => 1, 'ru' => 1, 'uk' => 1 }, # FIXME should generate from contents of distribution
570
  'ZEBRA_TOKENIZER' => { chr => 1, icu => 1 },
570
  'ZEBRA_TOKENIZER' => { chr => 1, icu => 1 },
571
  'RUN_DATABASE_TESTS' => { 'yes' => 1, 'no' => 1 },
571
  'RUN_DATABASE_TESTS' => { 'yes' => 1, 'no' => 1 },
Lines 1151-1157 You must specify the primary MARC format of the Link Here
1151
records to be indexed by Zebra.
1151
records to be indexed by Zebra.
1152
1152
1153
Koha provides Zebra configuration files for MARC21,
1153
Koha provides Zebra configuration files for MARC21,
1154
NORMARC and UNIMARC.
1154
and UNIMARC.
1155
1155
1156
MARC format for Zebra indexing);
1156
MARC format for Zebra indexing);
1157
    $msg .= _add_valid_values_disp('ZEBRA_MARC_FORMAT', $valid_values);
1157
    $msg .= _add_valid_values_disp('ZEBRA_MARC_FORMAT', $valid_values);
(-)a/cataloguing/additem.pl (-1 / +1 lines)
Lines 742-748 if ($op eq "additem") { Link Here
742
} elsif ($op eq "delinkitem"){
742
} elsif ($op eq "delinkitem"){
743
743
744
    my $analyticfield = '773';
744
    my $analyticfield = '773';
745
	if ($marcflavour  eq 'MARC21' || $marcflavour eq 'NORMARC'){
745
    if ($marcflavour  eq 'MARC21'){
746
        $analyticfield = '773';
746
        $analyticfield = '773';
747
    } elsif ($marcflavour eq 'UNIMARC') {
747
    } elsif ($marcflavour eq 'UNIMARC') {
748
        $analyticfield = '461';
748
        $analyticfield = '461';
(-)a/cataloguing/linkitem.pl (-1 / +1 lines)
Lines 45-51 my ($template, $loggedinuser, $cookie) = get_template_and_user( Link Here
45
my $biblio = GetMarcBiblio({ biblionumber => $biblionumber });
45
my $biblio = GetMarcBiblio({ biblionumber => $biblionumber });
46
my $marcflavour = C4::Context->preference("marcflavour");
46
my $marcflavour = C4::Context->preference("marcflavour");
47
$marcflavour ||="MARC21";
47
$marcflavour ||="MARC21";
48
if ($marcflavour eq 'MARC21' || $marcflavour eq 'NORMARC') {
48
if ($marcflavour eq 'MARC21') {
49
    $template->param(bibliotitle => $biblio->subfield('245','a'));
49
    $template->param(bibliotitle => $biblio->subfield('245','a'));
50
} elsif ($marcflavour eq 'UNIMARC') {
50
} elsif ($marcflavour eq 'UNIMARC') {
51
    $template->param(bibliotitle => $biblio->subfield('200','a'));
51
    $template->param(bibliotitle => $biblio->subfield('200','a'));
(-)a/cataloguing/value_builder/normarc_field_007.pl (-137 lines)
Lines 1-137 Link Here
1
#!/usr/bin/perl
2
3
# Copyright 2009 Magnus Enger Libriotech
4
#
5
# This file is part of Koha.
6
#
7
# Koha is free software; you can redistribute it and/or modify it
8
# under the terms of the GNU General Public License as published by
9
# the Free Software Foundation; either version 3 of the License, or
10
# (at your option) any later version.
11
#
12
# Koha is distributed in the hope that it will be useful, but
13
# WITHOUT ANY WARRANTY; without even the implied warranty of
14
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
# GNU General Public License for more details.
16
#
17
# You should have received a copy of the GNU General Public License
18
# along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20
use Modern::Perl;
21
use C4::Auth qw( get_template_and_user );
22
use CGI qw ( -utf8 );
23
use C4::Context;
24
25
use C4::Search;
26
use C4::Output qw( output_html_with_http_headers );
27
28
sub plugin_javascript {
29
my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
30
my $function_name= $field_number;
31
my $res="
32
<script>
33
34
function Clic$function_name(i) {
35
	defaultvalue=document.getElementById(\"$field_number\").value;
36
	newin=window.open(\"../cataloguing/plugin_launcher.pl?plugin_name=normarc_field_007.pl&index=$field_number&result=\"+defaultvalue,\"unimarc field 100\",'width=1000,height=600,toolbar=false,scrollbars=yes');
37
38
}
39
</script>
40
";
41
42
return ($function_name,$res);
43
}
44
sub plugin {
45
my ($input) = @_;
46
	my $index= $input->param('index');
47
	my $result= $input->param('result');
48
49
50
	my $dbh = C4::Context->dbh;
51
52
my ($template, $loggedinuser, $cookie)
53
    = get_template_and_user({template_name => "cataloguing/value_builder/normarc_field_007.tt",
54
			     query => $input,
55
			     type => "intranet",
56
			     flagsrequired => {editcatalogue => 1},
57
			     });
58
	$result = "ta" unless $result;
59
	my $f0 = substr($result,0,1);
60
	my $f1 = substr($result,1,4);
61
#added new parameters to allow for all material types
62
	my $f2 = substr($result,2,1);
63
	my $f3 = substr($result,3,1);
64
	my $f4 = substr($result,4,1);
65
	my $f5 = substr($result,5,1);
66
	my $f6 = substr($result,6,1);
67
	my $f7 = substr($result,7,1);
68
	my $f8 = substr($result,8,1);
69
	my $f9 = substr($result,9,1);
70
	my $f10 = substr($result,10,1);
71
	my $f11 = substr($result,11,1);
72
	my $f12 = substr($result,12,1);
73
	my $f13 = substr($result,13,1);
74
	my $f14 = substr($result,14,1);
75
	my $f15 = substr($result,15,1);
76
	my $f16 = substr($result,16,1);
77
	my $f17 = substr($result,17,1);
78
	my $f18 = substr($result,18,1);
79
	my $f19 = substr($result,19,1);
80
	my $f20 = substr($result,20,1);
81
	my $f21 = substr($result,21,1);
82
	my $f22 = substr($result,22,1);
83
#FIXME:  There is probably a more-elegant way to do this!
84
#FIXME:  Two of the material types treat position 06, 07, and 08 as a single
85
#three-char field.  This script works fine for creating values and sending them
86
#back to the MARC, but if there is already a value in the 007, it won't send 
87
#it properly to the value builder for those two instances.  Not sure how to solve.
88
	$template->param( index => $index,
89
			 f0 => $f0,
90
			 "f0$f0" => $f0,
91
			 f1 => $f1,
92
                         "f1$f1" => $f1,
93
			 f2 => $f2,
94
			 "f2$f2" => $f2,
95
			 f3 => $f3,
96
			 "f3$f3" => $f3,
97
			 f4 => $f4,
98
			 "f4$f4" => $f4,
99
			 f5 => $f5,
100
			 "f5$f5" => $f5,
101
			 f6 => $f6,
102
			 "f6$f6" => $f6,
103
			 f7 => $f7,
104
			 "f7$f7" => $f7,
105
			 f8 => $f8,
106
			 "f8$f8" => $f8,
107
			 f9 => $f9,
108
			 "f9$f9" => $f9,
109
			 f10 => $f10,
110
			 "f10$f10" => $f10,
111
			 f11 => $f11,
112
			 "f11$f11" => $f11,
113
			 f12 => $f12,
114
			 "f12$f12" => $f12,
115
			 f13 => $f13,
116
			 "f13$f13" => $f13,
117
			 f14 => $f14,
118
			 "f14$f14" => $f14,
119
			 f15 => $f15,
120
			 "f15$f15" => $f15,
121
			 f16 => $f16,
122
			 "f16$f16" => $f16,
123
			 f17 => $f17,
124
			 "f17$f17" => $f17,
125
			 f18 => $f18,
126
			 "f18$f18" => $f18,
127
			 f19 => $f19,
128
			 "f19$f19" => $f19,
129
			 f20 => $f20,
130
			 "f20$f20" => $f20,
131
			 f21 => $f21,
132
			 "f21$f21" => $f21,
133
			 f22 => $f22,
134
			 "f22$f22" => $f22,
135
					);
136
        output_html_with_http_headers $input, $cookie, $template->output;
137
}
(-)a/cataloguing/value_builder/normarc_field_008.pl (-169 lines)
Lines 1-169 Link Here
1
#!/usr/bin/perl
2
3
# Copyright 2009 Magnus Enger Libriotech
4
#
5
# This file is part of Koha.
6
#
7
# Koha is free software; you can redistribute it and/or modify it
8
# under the terms of the GNU General Public License as published by
9
# the Free Software Foundation; either version 3 of the License, or
10
# (at your option) any later version.
11
#
12
# Koha is distributed in the hope that it will be useful, but
13
# WITHOUT ANY WARRANTY; without even the implied warranty of
14
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
# GNU General Public License for more details.
16
#
17
# You should have received a copy of the GNU General Public License
18
# along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20
use Modern::Perl;
21
use C4::Auth qw( get_template_and_user );
22
use CGI qw ( -utf8 );
23
use C4::Context;
24
25
use C4::Search;
26
use C4::Output qw( output_html_with_http_headers );
27
28
# find today's date
29
my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst) = localtime(time);
30
31
$year += 1900;
32
$mon  += 1;
33
my $dateentered = substr($year, 2, 2) . sprintf("%0.2d", $mon) . sprintf("%0.2d", $mday);
34
35
sub plugin_javascript {
36
    my $lang = C4::Context->preference('DefaultLanguageField008' );
37
    $lang = "eng" unless $lang;
38
    $lang = pack("A3", $lang);
39
    my ($dbh, $record, $tagslib, $field_number, $tabloop) = @_;
40
    my $function_name = $field_number;
41
    my $res           = "
42
<script>
43
44
function Focus$function_name(subfield_managed) {
45
46
	if ( document.getElementById(\"$field_number\").value ) {
47
	}
48
	else {
49
        document.getElementById(\"$field_number\").value='$dateentered' + 't        no ||||| |||| 00| 0 $lang d';
50
	}
51
    return 1;
52
}
53
54
function Clic$function_name(i) {
55
	defaultvalue=document.getElementById(\"$field_number\").value;
56
	defaultvalue=defaultvalue.replace(/ /g, \"+\");
57
	newin=window.open(\"../cataloguing/plugin_launcher.pl?plugin_name=normarc_field_008.pl&index=$field_number&result=\"+defaultvalue,\"unimarc field 100\",'width=1000,height=600,toolbar=false,scrollbars=yes');
58
59
}
60
</script>
61
";
62
63
    return ($function_name, $res);
64
}
65
66
sub plugin {
67
    my $lang = C4::Context->preference('DefaultLanguageField008' );
68
    $lang = "eng" unless $lang;
69
    $lang = pack("A3", $lang);
70
    my ($input) = @_;
71
    my $index   = $input->param('index');
72
    my $result  = $input->param('result');
73
74
    my $dbh = C4::Context->dbh;
75
76
    my ($template, $loggedinuser, $cookie) = get_template_and_user(
77
        {   template_name   => "cataloguing/value_builder/normarc_field_008.tt",
78
            query           => $input,
79
            type            => "intranet",
80
            flagsrequired   => { editcatalogue => 1 },
81
        }
82
    );
83
84
    #	$result = "      t        xxu           00  0 eng d" unless $result;
85
    $result = "$dateentered" . "t        no ||||| |||| 00| 0 $lang d" unless $result;
86
    my $f1    = substr($result, 0,  6);
87
    my $f6    = substr($result, 6,  1);
88
    my $f710  = substr($result, 7,  4);
89
    my $f1114 = substr($result, 11, 4);
90
    my $f1517 = substr($result, 15, 3);
91
    my $f18   = substr($result, 18, 1);
92
    my $f19   = substr($result, 19, 1);
93
    my $f20   = substr($result, 20, 1);
94
    my $f21   = substr($result, 21, 1);
95
    my $f22   = substr($result, 22, 1);
96
    my $f23   = substr($result, 23, 1);
97
    my $f24   = substr($result, 24, 1);
98
    my $f25   = substr($result, 25, 1);
99
    my $f26   = substr($result, 26, 1);
100
    my $f27   = substr($result, 27, 1);
101
    my $f28   = substr($result, 28, 1);
102
    my $f29   = substr($result, 29, 1);
103
    my $f30   = substr($result, 30, 1);
104
    my $f31   = substr($result, 31, 1);
105
    my $f32   = substr($result, 32, 1);
106
    my $f33   = substr($result, 33, 1);
107
    my $f34   = substr($result, 34, 1);
108
    my $f3537 = substr($result, 35, 3);
109
    my $f38   = substr($result, 38, 1);
110
    my $f39   = substr($result, 39, 1);
111
112
    # bug 2563
113
    $f710  = "" if ($f710  =~ /^\s*$/);
114
    $f1114 = "" if ($f1114 =~ /^\s*$/);
115
116
    if ((!$f1) || ($f1 =~ m/ /)) {
117
        $f1 = $dateentered;
118
    }
119
120
    $template->param(
121
        index       => $index,
122
        f1          => $f1,
123
        f6          => $f6,
124
        "f6$f6"     => $f6,
125
        f710        => $f710,
126
        f1114       => $f1114,
127
        f1517       => $f1517,
128
        f18         => $f18,
129
        "f18$f18"   => $f18,
130
        f19         => $f19,
131
        "f19$f19"   => $f19,
132
        f20         => $f20,
133
        "f20$f20"   => $f20,
134
        f21         => $f21,
135
        "f21$f21"   => $f21,
136
        f22         => $f22,
137
        "f22$f22"   => $f22,
138
        f23         => $f23,
139
        "f23$f23"   => $f23,
140
        f24         => $f24,
141
        "f24$f24"   => $f24,
142
        f25         => $f25,
143
        "f25$f25"   => $f25,
144
        f26         => $f26,
145
        "f26$f26"   => $f26,
146
        f27         => $f27,
147
        "f27$f27"   => $f27,
148
        f28         => $f28,
149
        "f28$f28"   => $f28,
150
        f29         => $f29,
151
        "f29$f29"   => $f29,
152
        f30         => $f30,
153
        "f30$f30"   => $f30,
154
        f31         => $f31,
155
        "f31$f31"   => $f31,
156
        f32         => $f32,
157
        "f32$f32"   => $f32,
158
        f33         => $f33,
159
        "f33$f33"   => $f33,
160
        f34         => $f34,
161
        "f34$f34"   => $f34,
162
        f3537       => $f3537,
163
        f38         => $f38,
164
        "f38$f38"   => $f38,
165
        f39         => $f39,
166
        "f39$f39"   => $f39,
167
    );
168
    output_html_with_http_headers $input, $cookie, $template->output;
169
}
(-)a/cataloguing/value_builder/normarc_leader.pl (-87 lines)
Lines 1-87 Link Here
1
#!/usr/bin/perl
2
3
4
# Copyright 2000-2002 Katipo Communications
5
#
6
# This file is part of Koha.
7
#
8
# Koha is free software; you can redistribute it and/or modify it
9
# under the terms of the GNU General Public License as published by
10
# the Free Software Foundation; either version 3 of the License, or
11
# (at your option) any later version.
12
#
13
# Koha is distributed in the hope that it will be useful, but
14
# WITHOUT ANY WARRANTY; without even the implied warranty of
15
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
# GNU General Public License for more details.
17
#
18
# You should have received a copy of the GNU General Public License
19
# along with Koha; if not, see <http://www.gnu.org/licenses>.
20
21
use Modern::Perl;
22
23
use C4::Auth qw( get_template_and_user );
24
use CGI qw ( -utf8 );
25
use C4::Context;
26
27
use C4::Search;
28
use C4::Output qw( output_html_with_http_headers );
29
30
sub plugin_javascript {
31
my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
32
my $function_name= $field_number;
33
my $res="
34
<script>
35
36
function Focus$function_name(subfield_managed) {
37
    if(!document.getElementById(\"$field_number\").value){
38
        document.getElementById(\"$field_number\").value = '     nam a22     1  4500';
39
    }
40
    return 1;
41
}
42
43
function Clic$function_name(i) {
44
	defaultvalue=document.getElementById(\"$field_number\").value;
45
	newin=window.open(\"../cataloguing/plugin_launcher.pl?plugin_name=normarc_leader.pl&index=$field_number&result=\"+defaultvalue,\"unimarc field 100\",'width=1000,height=600,toolbar=false,scrollbars=yes');
46
47
}
48
</script>
49
";
50
51
return ($function_name,$res);
52
}
53
sub plugin {
54
my ($input) = @_;
55
	my $index= $input->param('index');
56
	my $result= $input->param('result');
57
58
59
	my $dbh = C4::Context->dbh;
60
61
my ($template, $loggedinuser, $cookie)
62
    = get_template_and_user({template_name => "cataloguing/value_builder/normarc_leader.tt",
63
			     query => $input,
64
			     type => "intranet",
65
			     flagsrequired => {editcatalogue => 1},
66
			     });
67
	$result = "     nam a22     1  4500" unless $result;
68
	my $f5 = substr($result,5,1);
69
	my $f6 = substr($result,6,1);
70
	my $f7 = substr($result,7,1);
71
	my $f8 = substr($result,8,1);
72
	my $f17 = substr($result,17,1);
73
	my $f18 = substr($result,18,1);
74
	my $f19 = substr($result,19,1);
75
	my $f2023 = substr($result,20,4);
76
	$template->param(index => $index,
77
							"f5$f5" => 1,
78
							"f6$f6" => 1,
79
							"f7$f7" => 1,
80
							"f8$f8" => 1,
81
							"f17$f17" => 1,
82
							"f18$f18" => 1,
83
							"f19$f19" => 1,
84
							"f2023" => $f2023,
85
					);
86
        output_html_with_http_headers $input, $cookie, $template->output;
87
}
(-)a/debian/docs/koha-create.xml (-2 / +2 lines)
Lines 25-31 Link Here
25
    <cmdsynopsis>
25
    <cmdsynopsis>
26
      <command>koha-create</command>
26
      <command>koha-create</command>
27
      <arg choice="req"><option>--create-db</option>|<option>--request-db</option>|<option>--populate-db</option>|<option>--use-db</option></arg>
27
      <arg choice="req"><option>--create-db</option>|<option>--request-db</option>|<option>--populate-db</option>|<option>--use-db</option></arg>
28
      <arg><option>--marcflavor</option> marc21|normarc|unimarc</arg>
28
      <arg><option>--marcflavor</option> marc21|unimarc</arg>
29
      <arg><option>--zebralang</option> el|en|es|fr|nb|ru|uk</arg>
29
      <arg><option>--zebralang</option> el|en|es|fr|nb|ru|uk</arg>
30
      <arg><option>--memcached-servers</option> server:port</arg>
30
      <arg><option>--memcached-servers</option> server:port</arg>
31
      <arg><option>--memcached-prefix</option> namespace_prefix</arg>
31
      <arg><option>--memcached-prefix</option> namespace_prefix</arg>
Lines 401-407 Link Here
401
      <varlistentry>
401
      <varlistentry>
402
        <term><option>ZEBRA_MARC_FORMAT</option></term>
402
        <term><option>ZEBRA_MARC_FORMAT</option></term>
403
        <listitem>
403
        <listitem>
404
          <para>Specifies format of MARC records to be indexed by Zebra.  Possible values are 'marc21', 'normarc' and 'unimarc'.</para>
404
          <para>Specifies format of MARC records to be indexed by Zebra.  Possible values are 'marc21' and 'unimarc'.</para>
405
        </listitem>
405
        </listitem>
406
      </varlistentry>
406
      </varlistentry>
407
              
407
              
(-)a/debian/scripts/koha-create (-1 / +1 lines)
Lines 50-56 DB usage mode: Link Here
50
50
51
Options:
51
Options:
52
  --marcflavor flavor       Set the MARC flavor. Valid values are marc21 (default),
52
  --marcflavor flavor       Set the MARC flavor. Valid values are marc21 (default),
53
                            normarc and unimarc.
53
                            and unimarc.
54
  --zebralang lang          Choose the primary language for Zebra indexing. Valid
54
  --zebralang lang          Choose the primary language for Zebra indexing. Valid
55
                            values are cs, el, en (default), es, fr, nb, ru and uk.
55
                            values are cs, el, en (default), es, fr, nb, ru and uk.
56
  --elasticsearch-server s  Enforce the use of the specified Elasticsearch server(s)
56
  --elasticsearch-server s  Enforce the use of the specified Elasticsearch server(s)
(-)a/debian/scripts/koha-translate (-1 lines)
Lines 172-178 check_lang_po_files() Link Here
172
    lang=$1
172
    lang=$1
173
173
174
    po_files="$PO_DIR/$lang-marc-MARC21.po
174
    po_files="$PO_DIR/$lang-marc-MARC21.po
175
              $PO_DIR/$lang-marc-NORMARC.po
176
              $PO_DIR/$lang-marc-UNIMARC.po
175
              $PO_DIR/$lang-marc-UNIMARC.po
177
              $PO_DIR/$lang-opac-bootstrap.po
176
              $PO_DIR/$lang-opac-bootstrap.po
178
              $PO_DIR/$lang-pref.po
177
              $PO_DIR/$lang-pref.po
(-)a/debian/templates/koha-sites.conf (-1 / +1 lines)
Lines 23-29 DEFAULTSQL="" Link Here
23
23
24
## Zebra global configuration variables
24
## Zebra global configuration variables
25
#
25
#
26
# ZEBRA_MARC_FORMAT: 'marc21' | 'normarc' | 'unimarc'
26
# ZEBRA_MARC_FORMAT: 'marc21' | 'unimarc'
27
# Specifies the MARC records format for indexing
27
# Specifies the MARC records format for indexing
28
# default: 'marc21'
28
# default: 'marc21'
29
ZEBRA_MARC_FORMAT="marc21"
29
ZEBRA_MARC_FORMAT="marc21"
(-)a/debian/templates/normarc-retrieval-info-auth-dom.xml (-22 lines)
Lines 1-22 Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
2
<retrievalinfo xmlns="http://indexdata.com/yaz">
3
  <retrieval syntax="normarc" name="F">
4
    <backend syntax="xml" name="marc">
5
      <marc inputformat="xml" outputformat="marc"
6
            inputcharset="utf-8"
7
            outputcharset="utf-8"/>
8
    </backend>
9
  </retrieval>
10
  <retrieval syntax="normarc" name="B">
11
    <backend syntax="xml" name="marc">
12
      <marc inputformat="xml" outputformat="marc"
13
            inputcharset="utf-8"
14
            outputcharset="utf-8"/>
15
    </backend>
16
  </retrieval>
17
  <retrieval syntax="xml" name="index"/> <!-- allow viewing index entries -->
18
  <retrieval syntax="xml" name="marc"
19
             identifier="info:srw/schema/1/marcxml-v1.1"/>
20
  <retrieval syntax="xml" name="marcxml"
21
             identifier="info:srw/schema/1/marcxml-v1.1"/>
22
</retrievalinfo>
(-)a/debian/templates/normarc-retrieval-info-bib-dom.xml (-23 lines)
Lines 1-23 Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
2
<retrievalinfo xmlns="http://indexdata.com/yaz">
3
  <retrieval syntax="normarc" name="F">
4
    <backend syntax="xml" name="marc">
5
      <marc inputformat="xml" outputformat="marc"
6
            inputcharset="utf-8"
7
            outputcharset="utf-8"/>
8
    </backend>
9
  </retrieval>
10
  <retrieval syntax="normarc" name="B">
11
    <backend syntax="xml" name="marc">
12
      <marc inputformat="xml" outputformat="marc"
13
            inputcharset="utf-8"
14
            outputcharset="utf-8"/>
15
    </backend>
16
  </retrieval>
17
  <retrieval syntax="xml"/>
18
  <retrieval syntax="xml" name="index"/> <!-- allow viewing index entries -->
19
  <retrieval syntax="xml" name="marc"
20
             identifier="info:srw/schema/1/marcxml-v1.1"/>
21
  <retrieval syntax="xml" name="marcxml"
22
             identifier="info:srw/schema/1/marcxml-v1.1"/>
23
</retrievalinfo>
(-)a/etc/zebradb/etc/normarc.mar (-2 lines)
Lines 1-2 Link Here
1
name normarc
2
reference normarc
(-)a/gulpfile.js (-12 lines)
Lines 91-101 const poTasks = { Link Here
91
        create: po_create_marc_marc21,
91
        create: po_create_marc_marc21,
92
        update: po_update_marc_marc21,
92
        update: po_update_marc_marc21,
93
    },
93
    },
94
    'marc-NORMARC': {
95
        extract: po_extract_marc_normarc,
96
        create: po_create_marc_normarc,
97
        update: po_update_marc_normarc,
98
    },
99
    'marc-UNIMARC': {
94
    'marc-UNIMARC': {
100
        extract: po_extract_marc_unimarc,
95
        extract: po_extract_marc_unimarc,
101
        create: po_create_marc_unimarc,
96
        create: po_create_marc_unimarc,
Lines 147-153 function po_extract_marc (type) { Link Here
147
}
142
}
148
143
149
function po_extract_marc_marc21 ()  { return po_extract_marc('MARC21') }
144
function po_extract_marc_marc21 ()  { return po_extract_marc('MARC21') }
150
function po_extract_marc_normarc () { return po_extract_marc('NORMARC') }
151
function po_extract_marc_unimarc () { return po_extract_marc('UNIMARC') }
145
function po_extract_marc_unimarc () { return po_extract_marc('UNIMARC') }
152
146
153
function po_extract_staff () {
147
function po_extract_staff () {
Lines 157-166 function po_extract_staff () { Link Here
157
        'koha-tmpl/intranet-tmpl/prog/en/xslt/*.xsl',
151
        'koha-tmpl/intranet-tmpl/prog/en/xslt/*.xsl',
158
        'koha-tmpl/intranet-tmpl/prog/en/columns.def',
152
        'koha-tmpl/intranet-tmpl/prog/en/columns.def',
159
        '!koha-tmpl/intranet-tmpl/prog/en/**/*MARC21*',
153
        '!koha-tmpl/intranet-tmpl/prog/en/**/*MARC21*',
160
        '!koha-tmpl/intranet-tmpl/prog/en/**/*NORMARC*',
161
        '!koha-tmpl/intranet-tmpl/prog/en/**/*UNIMARC*',
154
        '!koha-tmpl/intranet-tmpl/prog/en/**/*UNIMARC*',
162
        '!koha-tmpl/intranet-tmpl/prog/en/**/*marc21*',
155
        '!koha-tmpl/intranet-tmpl/prog/en/**/*marc21*',
163
        '!koha-tmpl/intranet-tmpl/prog/en/**/*normarc*',
164
        '!koha-tmpl/intranet-tmpl/prog/en/**/*unimarc*',
156
        '!koha-tmpl/intranet-tmpl/prog/en/**/*unimarc*',
165
    ];
157
    ];
166
158
Lines 175-184 function po_extract_opac () { Link Here
175
        'koha-tmpl/opac-tmpl/bootstrap/en/**/*.inc',
167
        'koha-tmpl/opac-tmpl/bootstrap/en/**/*.inc',
176
        'koha-tmpl/opac-tmpl/bootstrap/en/xslt/*.xsl',
168
        'koha-tmpl/opac-tmpl/bootstrap/en/xslt/*.xsl',
177
        '!koha-tmpl/opac-tmpl/bootstrap/en/**/*MARC21*',
169
        '!koha-tmpl/opac-tmpl/bootstrap/en/**/*MARC21*',
178
        '!koha-tmpl/opac-tmpl/bootstrap/en/**/*NORMARC*',
179
        '!koha-tmpl/opac-tmpl/bootstrap/en/**/*UNIMARC*',
170
        '!koha-tmpl/opac-tmpl/bootstrap/en/**/*UNIMARC*',
180
        '!koha-tmpl/opac-tmpl/bootstrap/en/**/*marc21*',
171
        '!koha-tmpl/opac-tmpl/bootstrap/en/**/*marc21*',
181
        '!koha-tmpl/opac-tmpl/bootstrap/en/**/*normarc*',
182
        '!koha-tmpl/opac-tmpl/bootstrap/en/**/*unimarc*',
172
        '!koha-tmpl/opac-tmpl/bootstrap/en/**/*unimarc*',
183
    ];
173
    ];
184
174
Lines 272-278 function po_create_type (type) { Link Here
272
}
262
}
273
263
274
function po_create_marc_marc21 ()       { return po_create_type('marc-MARC21') }
264
function po_create_marc_marc21 ()       { return po_create_type('marc-MARC21') }
275
function po_create_marc_normarc ()      { return po_create_type('marc-NORMARC') }
276
function po_create_marc_unimarc ()      { return po_create_type('marc-UNIMARC') }
265
function po_create_marc_unimarc ()      { return po_create_type('marc-UNIMARC') }
277
function po_create_staff ()             { return po_create_type('staff-prog') }
266
function po_create_staff ()             { return po_create_type('staff-prog') }
278
function po_create_opac ()              { return po_create_type('opac-bootstrap') }
267
function po_create_opac ()              { return po_create_type('opac-bootstrap') }
Lines 294-300 function po_update_type (type) { Link Here
294
}
283
}
295
284
296
function po_update_marc_marc21 ()       { return po_update_type('marc-MARC21') }
285
function po_update_marc_marc21 ()       { return po_update_type('marc-MARC21') }
297
function po_update_marc_normarc ()      { return po_update_type('marc-NORMARC') }
298
function po_update_marc_unimarc ()      { return po_update_type('marc-UNIMARC') }
286
function po_update_marc_unimarc ()      { return po_update_type('marc-UNIMARC') }
299
function po_update_staff ()             { return po_update_type('staff-prog') }
287
function po_update_staff ()             { return po_update_type('staff-prog') }
300
function po_update_opac ()              { return po_update_type('opac-bootstrap') }
288
function po_update_opac ()              { return po_update_type('opac-bootstrap') }
(-)a/installer/data/mysql/kohastructure.sql (-1 / +1 lines)
Lines 4498-4504 DROP TABLE IF EXISTS `search_marc_map`; Link Here
4498
CREATE TABLE `search_marc_map` (
4498
CREATE TABLE `search_marc_map` (
4499
  `id` int(11) NOT NULL AUTO_INCREMENT,
4499
  `id` int(11) NOT NULL AUTO_INCREMENT,
4500
  `index_name` enum('biblios','authorities') COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'what storage index this map is for',
4500
  `index_name` enum('biblios','authorities') COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'what storage index this map is for',
4501
  `marc_type` enum('marc21','unimarc','normarc') COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'what MARC type this map is for',
4501
  `marc_type` enum('marc21','unimarc') COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'what MARC type this map is for',
4502
  `marc_field` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT 'the MARC specifier for this field',
4502
  `marc_field` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT 'the MARC specifier for this field',
4503
  PRIMARY KEY (`id`),
4503
  PRIMARY KEY (`id`),
4504
  UNIQUE KEY `index_name` (`index_name`,`marc_field`(191),`marc_type`),
4504
  UNIQUE KEY `index_name` (`index_name`,`marc_field`(191),`marc_type`),
(-)a/installer/data/mysql/nb-NO/marcflavour/normarc/Obligatorisk/normarc.sql (-1011 lines)
Lines 1-1011 Link Here
1
-- This file is part of Koha.
2
--
3
-- Copyright 2012 Magnus Enger Libriotech
4
--
5
-- Koha is free software; you can redistribute it and/or modify it
6
-- under the terms of the GNU General Public License as published by
7
-- the Free Software Foundation; either version 3 of the License, or
8
-- (at your option) any later version.
9
--
10
-- Koha is distributed in the hope that it will be useful, but
11
-- WITHOUT ANY WARRANTY; without even the implied warranty of
12
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
-- GNU General Public License for more details.
14
--
15
-- You should have received a copy of the GNU General Public License
16
-- along with Koha; if not, see <http://www.gnu.org/licenses>.
17
18
DELETE FROM marc_tag_structure WHERE frameworkcode='';
19
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('000','Postens hode','Postens hode','0','1','','');
20
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('001','Identifikasjonsnummer','Identifikasjonsnummer','0','0','','');
21
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('007','Fysisk beskrivelse av dokumentet (R)','Fysisk beskrivelse av dokumentet (R)','1','0','','');
22
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('008','Informasjonskoder','Informasjonskoder','0','0','','');
23
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('009','Lokale koder','Lokale koder','0','0','','');
24
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('010','Nasjonalbibliografisk kontrollnummer','Nasjonalbibliografisk kontrollnummer','0','0','','');
25
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('015','Andre bibliografiske kontrollnummer (R)','Andre bibliografiske kontrollnummer (R)','1','0','','');
26
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('019','Utvidet informasjonskodefelt','Utvidet informasjonskodefelt','0','0','','');
27
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('020','Internasjonalt standard boknummer (ISBN)','Internasjonalt standard boknummer (ISBN)','1','0','','');
28
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('022','Internasjonalt standard periodikanummer (ISSN) (R) [Per]','Internasjonalt standard periodikanummer (ISSN) (R) [Per]','1','0','','');
29
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('024','Andre standardnumre','Andre standardnumre','0','0','','');
30
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('025','Europeisk artikkelnummer (EAN)','Europeisk artikkelnummer (EAN)','0','0','','');
31
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('027','Standard teknisk rapportnummer (STRN)','Standard teknisk rapportnummer (STRN)','0','0','','');
32
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('028','Utgivernummer/Edisjonsnummer (R) [Mus]','Utgivernummer/Edisjonsnummer (R) [Mus]','1','0','','');
33
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('030','CODEN [Per]','CODEN [Per]','0','0','','');
34
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('033','Dato og sted for en hendelse (R)','Dato og sted for en hendelse (R)','1','0','','');
35
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('040','Katalogiseringskilde','Katalogiseringskilde','0','0','','');
36
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('041','Språkkoder','Språkkoder','0','0','','');
37
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('044','Kode for produsentland [F/V, Mus]','Kode for produsentland [F/V, Mus]','0','0','','');
38
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('045','Kronologi [Mus]','Kronologi [Mus]','0','0','','');
39
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('060','National Library of Medicine klassifikasjonsnummer (R)','National Library of Medicine klassifikasjonsnummer (R)','1','0','','');
40
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('074','Offentlig trykksaknummer','Offentlig trykksaknummer','0','0','','');
41
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('080','Universal desimalklassifikasjon (UDK) (R)','Universal desimalklassifikasjon (UDK) (R)','1','0','','');
42
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('082','Dewey desimalklassifikasjon (DDK) (R)','Dewey desimalklassifikasjon (DDK) (R)','1','0','','');
43
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('084','Andre klassifikasjonsnummer (R)','Andre klassifikasjonsnummer (R)','1','0','','');
44
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('09X','Lokale felt','Lokale felt','0','0','','');
45
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('100','Hovedordningsord personnavn','Hovedordningsord personnavn','0','0','','');
46
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('110','Hovedordningsord korporasjonsnavn','Hovedordningsord korporasjonsnavn','0','0','','');
47
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('111','Hovedordningsord konferanse-, møte-, utstillingsnavn etc','Hovedordningsord konferanse-, møte-, utstillingsnavn etc','0','0','','');
48
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('130','Hovedordningsord standardtittel','Hovedordningsord standardtittel','0','0','','');
49
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('210','Forkortet tittel [Per]','Forkortet tittel [Per]','0','0','','');
50
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('222','Nøkkeltittel [Per]','Nøkkeltittel [Per]','0','0','','');
51
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('240','Standardtittel','Standardtittel','0','0','','');
52
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('245','Tittel og ansvarsopplysninger','Tittel og ansvarsopplysninger','0','0','','');
53
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('246','Parallelltittel (R)','Parallelltittel (R)','1','0','','');
54
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('250','Utgave','Utgave','0','0','','');
55
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('254','Musikktrykkets fysiske presentasjon [Mus]','Musikktrykkets fysiske presentasjon [Mus]','0','0','','');
56
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('255','Matematiske data [Kar]','Matematiske data [Kar]','0','0','','');
57
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('256','Filkarakteristika [Fil]','Filkarakteristika [Fil]','0','0','','');
58
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('260','Utgivelse, distribusjon osv','Utgivelse, distribusjon osv','0','0','','');
59
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('263','Beregnet publikasjonsdato','Beregnet publikasjonsdato','0','0','','');
60
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('270','Adresse (R)','Adresse (R)','1','0','','');
61
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('300','Fysisk beskrivelse','Fysisk beskrivelse','0','0','','');
62
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('306','Varighet [Mus]','Varighet [Mus]','0','0','','');
63
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('310','Periodisitet [Per]','Periodisitet [Per]','0','0','','');
64
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('350','Pris [Per]','Pris [Per]','0','0','','');
65
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('362','Numeriske og/eller alfabetiske og kronologiske betegnelser [Per]','Numeriske og/eller alfabetiske og kronologiske betegnelser [Per]','0','0','','');
66
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('440','Serieangivelse med biinnførsel (R)','Serieangivelse med biinnførsel (R)','1','0','','');
67
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('490','Serieangivelse uten biinnførsel (R)','Serieangivelse uten biinnførsel (R)','1','0','','');
68
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('500','Generell note (R)','Generell note (R)','1','0','','');
69
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('501','\"Sammen med\"-note (R)','\"Sammen med\"-note (R)','1','0','','');
70
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('502','Avhandlinger, dissertaser og hovedoppgaver (R)','Avhandlinger, dissertaser og hovedoppgaver (R)','1','0','','');
71
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('503','Utgave/Historikk (R)','Utgave/Historikk (R)','1','0','','');
72
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('505','Innholdsnote (R)','Innholdsnote (R)','1','0','','');
73
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('508','Ansvarshavende (R)','Ansvarshavende (R)','1','0','','');
74
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('510','Referanser (R)','Referanser (R)','1','0','','');
75
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('511','Note for utøvere / Medarbeidere [Mus, F/V] (R)','Note for utøvere / Medarbeidere [Mus, F/V] (R)','1','0','','');
76
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('512','Art, ramme eller kunstnerisk form (R)','Art, ramme eller kunstnerisk form (R)','1','0','','');
77
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('516','Filtype [Fil] (R)','Filtype [Fil] (R)','1','0','','');
78
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('520','Sammendrag (R)','Sammendrag (R)','1','0','','');
79
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('521','Brukergruppe (R)','Brukergruppe (R)','1','0','','');
80
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('525','Bilag og supplementer (R)','Bilag og supplementer (R)','1','0','','');
81
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('530','Andre materialtyper (R)','Andre materialtyper (R)','1','0','','');
82
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('531','Spesielle materialdetaljer (R)','Spesielle materialdetaljer (R)','1','0','','');
83
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('532','Utgivelse, distribusjon, etc (R)','Utgivelse, distribusjon, etc (R)','1','0','','');
84
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('533','Fysisk beskrivelse (R)','Fysisk beskrivelse (R)','1','0','','');
85
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('538','Systemdetaljer og filkarakteristika [Fil] (R)','Systemdetaljer og filkarakteristika [Fil] (R)','1','0','','');
86
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('539','Serier (R)','Serier (R)','1','0','','');
87
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('546','Språk og/eller oversettelse/bearbeidelse (R)','Språk og/eller oversettelse/bearbeidelse (R)','1','0','','');
88
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('571','Nummerbetegnelser (R)','Nummerbetegnelser (R)','1','0','','');
89
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('572','Varianter av tittel (R)','Varianter av tittel (R)','1','0','','');
90
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('573','Kilde for hovedtittel (R)','Kilde for hovedtittel (R)','1','0','','');
91
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('574','Originaltittel (R)','Originaltittel (R)','1','0','','');
92
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('59X','Lokale noter (R)','Lokale noter (R)','1','0','','');
93
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('600','Emneinnførsel personnavn (R)','Emneinnførsel personnavn (R)','1','0','','');
94
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('610','Emneinnførsel korporasjonsnavn (R)','Emneinnførsel korporasjonsnavn (R)','1','0','','');
95
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('611','Emneinnførsel konferanse-, møte-, utstillingsnavn etc (R)','Emneinnførsel konferanse-, møte-, utstillingsnavn etc (R)','1','0','','');
96
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('630','Emneinnførsel standardtittel (R)','Emneinnførsel standardtittel (R)','1','0','','');
97
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('640','Emneinnførsel tittel (R)','Emneinnførsel tittel (R)','1','0','','');
98
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('650','Generelle emneord (R)','Generelle emneord (R)','1','0','','');
99
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('651','Geografisk sted som emneord (R)','Geografisk sted som emneord (R)','1','0','','');
100
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('652','Komposisjonstype [Mus] (R)','Komposisjonstype [Mus] (R)','1','0','','');
101
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('653','Frie nøkkelord (R)','Frie nøkkelord (R)','1','0','','');
102
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('655','Genre-/form-emneord (R)','Genre-/form-emneord (R)','1','0','','');
103
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('656','Yrkesbetegnelse som emneord (R)','Yrkesbetegnelse som emneord (R)','1','0','','');
104
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('658','Besetning [Mus] (R)','Besetning [Mus] (R)','1','0','','');
105
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('69X','Lokale emneinnførsler (R)','Lokale emneinnførsler (R)','1','0','','');
106
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('700','Biinnførsel personnavn (R)','Biinnførsel personnavn (R)','1','0','','');
107
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('710','Biinnførsel korporasjonsnavn (R)','Biinnførsel korporasjonsnavn (R)','1','0','','');
108
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('711','Biinnførsel konferanse-, møte-, utstillingsnavn etc (R)','Biinnførsel konferanse-, møte-, utstillingsnavn etc (R)','1','0','','');
109
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('730','Biinnførsel standardtittel (R)','Biinnførsel standardtittel (R)','1','0','','');
110
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('740','Biinnførsel tittel (R)','Biinnførsel tittel (R)','1','0','','');
111
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('752','Biinnførsel stedsnavn (hierarkisk) (R)','Biinnførsel stedsnavn (hierarkisk) (R)','1','0','','');
112
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('753','Biinnførsel systemkrav [Fil] (R)','Biinnførsel systemkrav [Fil] (R)','1','0','','');
113
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('760','Overordnet enhet (R)','Overordnet enhet (R)','1','0','','');
114
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('762','Underordnet enhet (R)','Underordnet enhet (R)','1','0','','');
115
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('765','Originalspråkutgave (R)','Originalspråkutgave (R)','1','0','','');
116
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('767','Oversatt utgave (R)','Oversatt utgave (R)','1','0','','');
117
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('770','Supplement (R)','Supplement (R)','1','0','','');
118
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('772','Hoveddokument (R)','Hoveddokument (R)','1','0','','');
119
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('773','Vertsdokument (R)','Vertsdokument (R)','1','0','','');
120
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('775','Andre utgaver (R)','Andre utgaver (R)','1','0','','');
121
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('776','Andre materialvarianter (R)','Andre materialvarianter (R)','1','0','','');
122
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('777','Utgitt sammen med (R)','Utgitt sammen med (R)','1','0','','');
123
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('780','Fortsettelse av (R)','Fortsettelse av (R)','1','0','','');
124
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('785','Fortsettes i (R)','Fortsettes i (R)','1','0','','');
125
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('787','Ikkespesifisert relasjon (R)','Ikkespesifisert relasjon (R)','1','0','','');
126
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('79X','Lokale lenker (R)','Lokale lenker (R)','1','0','','');
127
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('800','Serieinnførsel personnavn (R)','Serieinnførsel personnavn (R)','1','0','','');
128
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('810','Serieinnførsel korporasjonsnavn (R)','Serieinnførsel korporasjonsnavn (R)','1','0','','');
129
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('811','Serieinnførsel konferanse-, møte-, utstillingsnavn etc (R)','Serieinnførsel konferanse-, møte-, utstillingsnavn etc (R)','1','0','','');
130
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('830','Serieinnførsel standardtittel (R)','Serieinnførsel standardtittel (R)','1','0','','');
131
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('850','Eiende institusjon og beholdningsinformasjon (R)','Eiende institusjon og beholdningsinformasjon (R)','1','0','','');
132
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('856','Elektronisk lokalisering og tilgang (R)','Elektronisk lokalisering og tilgang (R)','1','0','','');
133
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('900','Henvisning fra personnavn (R)','Henvisning fra personnavn (R)','1','0','','');
134
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('910','Henvisning fra korporasjonsnavn (R)','Henvisning fra korporasjonsnavn (R)','1','0','','');
135
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('911','Henvisning fra konferanse-, møte-, utstillingsnavn etc (R)','Henvisning fra konferanse-, møte-, utstillingsnavn etc (R)','1','0','','');
136
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('930','Henvisning fra standardtittel (R)','Henvisning fra standardtittel (R)','1','0','','');
137
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('940','Henvisning fra tittel (R)','Henvisning fra tittel (R)','1','0','','');
138
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('942','Andre opplysninger (Koha)','Andre opplysninger (Koha)','0','0','','');
139
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('950','Andre henvisninger (R)','Andre henvisninger (R)','1','0','','');
140
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('952','Eksemplarinformasjon (Koha)','Eksemplarinformasjon (Koha)','1','0','','');
141
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('999','Kontrollnummer (Koha)','Kontrollnummer (Koha)','1','0','','');
142
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('99X','Lokale henvisninger (R)','Lokale henvisninger (R)','1','0','','');
143
144
145
DELETE FROM marc_subfield_structure WHERE frameworkcode='';
146
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('000','@','Postens hode','Postens hode','0','1','','0','','','normarc_leader.pl','0','-1','',NULL,'','','24');
147
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('001','@','Identifikasjonsnummer','Identifikasjonsnummer','0','0','','0','','','','0','-1','','','',NULL,'9999');
148
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('007','@','Fysisk beskrivelse av dokumentet (R)','Fysisk beskrivelse av dokumentet (R)','1','0','','0','','','normarc_field_007.pl','0','-1','',NULL,'','','9999');
149
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('008','@','Informasjonskoder','Informasjonskoder','0','0','','0','','','normarc_field_008.pl','0','-1','',NULL,'','','40');
150
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('009','@','Lokale koder','Lokale koder','0','0','','0','','','','0','-1','','','',NULL,'9999');
151
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('010','a','Nummer','Nummer','0','0','biblioitems.lccn','0','','','','0','-1','','','',NULL,'9999');
152
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('015','a','Nummer','Nummer','0','0','0','0','','','','0','-1','','','',NULL,'9999');
153
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('015','b','Kilde','Kilde','0','0','0','0','','','','0','-1','','','',NULL,'9999');
154
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('019','a','Aldersgruppemerker for barnebøker','Aldersgruppemerker for barnebøker','0','0','0','0','','','','0','-1','','','',NULL,'9999');
155
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('019','b','Dokumenttype (BSMARC)','Dokumenttype','0','0','0','0','','','','0','-1','','','',NULL,'9999');
156
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('019','d','Litterær form/genre','Litterær form/genre','0','0','0','0','','','','0','-1','','','',NULL,'9999');
157
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('019','e','Litteratur tilpasset visse brukergrupper','Litteratur tilpasset visse brukergrupper','0','0','0','0','','','','0','-1','','','',NULL,'9999');
158
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('019','f','Andre grupper','Andre grupper','0','0','0','0','','','','0','-1','','','',NULL,'9999');
159
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('020','a','ISBN','ISBN','0','0','biblioitems.isbn','0','','','','0','-1','','','',NULL,'9999');
160
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('020','b','Innbindingsinformasjon','Innbindingsinformasjon','0','0','0','0','','','','0','-1','','','',NULL,'9999');
161
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('020','c','Leveringsbetingelser','Leveringsbetingelser','0','0','0','0','','','','0','-1','','','',NULL,'9999');
162
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('020','g','Andre tilføyelser','Andre tilføyelser','0','0','0','0','','','','0','-1','','','',NULL,'9999');
163
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('020','z','Feil ISBN','Feil ISBN','0','0','0','0','','','','0','-1','','','',NULL,'9999');
164
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('022','a','Gyldig ISSN (1.8A-1.8B1, 1.8C)','Gyldig ISSN (1.8A-1.8B1, 1.8C)','0','0','biblioitems.issn','0','','','','0','-1','','','',NULL,'9999');
165
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('022','y','Ukorrekt ISSN','Ukorrekt ISSN','0','0','0','0','','','','0','-1','','','',NULL,'9999');
166
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('022','z','Kansellert ISSN','Kansellert ISSN','0','0','0','0','','','','0','-1','','','',NULL,'9999');
167
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('024','a','Standardnummer','Standardnummer','0','0','0','0','','','','0','-1','','','',NULL,'9999');
168
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('024','c','Leveringsbetingelser','Leveringsbetingelser','0','0','0','0','','','','0','-1','','','',NULL,'9999');
169
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('024','g','Andre tilføyelser','Andre tilføyelser','0','0','0','0','','','','0','-1','','','',NULL,'9999');
170
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('024','z','Feil standardnummer','Feil standardnummer','0','0','0','0','','','','0','-1','','','',NULL,'9999');
171
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('025','a','Nummer','Nummer','0','0','0','0','','','','0','-1','','','',NULL,'9999');
172
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('027','a','STRN','STRN','0','0','0','0','','','','0','-1','','','',NULL,'9999');
173
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('027','z','Feil eller forkastet STRN','Feil eller forkastet STRN','0','0','0','0','','','','0','-1','','','',NULL,'9999');
174
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('028','a','Utgivernummer/edisjonsnummer eller forleggernummer','Utgivernummer/edisjonsnummer eller forleggernummer','0','0','0','0','','','','0','-1','','','',NULL,'9999');
175
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('028','b','Utgiver','Utgiver','0','0','0','0','','','','0','-1','','','',NULL,'9999');
176
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('030','a','Gyldig CODEN','Gyldig CODEN','0','0','0','0','','','','0','-1','','','',NULL,'9999');
177
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('030','z','Ugyldig eller forkastet CODEN','Ugyldig eller forkastet CODEN','0','0','0','0','','','','0','-1','','','',NULL,'9999');
178
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('033','a','Dato for innspilling/opptak','Dato for innspilling/opptak','0','0','0','0','','','','0','-1','','','',NULL,'9999');
179
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('033','b','Kode for geografisk område','Kode for geografisk område','0','0','0','0','','','','0','-1','','','',NULL,'9999');
180
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('040','a','Katalogiseringskilde','Katalogiseringskilde','0','0','0','0','','','','0','-1','','','',NULL,'9999');
181
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('041','a','Språk i tekst/lydspor','Språk i tekst/lydspor','0','0','0','0','','','','0','-1','','','',NULL,'9999');
182
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('041','b','Språk i sammendrag/undertekster','Språk i sammendrag/undertekster','0','0','0','0','','','','0','-1','','','',NULL,'9999');
183
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('041','g','Språk i medfølgende materiale','Språk i medfølgende materiale','0','0','0','0','','','','0','-1','','','',NULL,'9999');
184
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('041','h','Språk i originaldokument','Språk i originaldokument','0','0','0','0','','','','0','-1','','','',NULL,'9999');
185
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('045','a','År (f.eks. komposisjonsår) (R)','År (f.eks. komposisjonsår) (R)','1','0','0','0','','','','0','-1','','','',NULL,'9999');
186
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('060','7','Del av dokumentet som klassifikasjonskoden gjelder','Del av dokumentet som klassifikasjonskoden gjelder','0','0','0','0','','','','0','-1','','','',NULL,'9999');
187
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('060','a','Klassifikasjonsnummer','Klassifikasjonsnummer','0','0','0','0','','','','0','-1','','','',NULL,'9999');
188
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('060','z','Hovednummer','Hovednummer','0','0','0','0','','','','0','-1','','','',NULL,'9999');
189
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('074','a','Kode','Kode','0','0','0','0','','','','0','-1','','','',NULL,'9999');
190
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('080','7','Del av dokumentet som klassifikasjonskoden gjelder','Del av dokumentet som klassifikasjonskoden gjelder','0','0','0','0','','','','0','-1','','','',NULL,'9999');
191
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('080','a','Klassifikasjonsnummer','Klassifikasjonsnummer','0','0','0','0','','','','0','-1','','','',NULL,'9999');
192
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('080','e','Oppslagsterm til emneregister','Oppslagsterm til emneregister','0','0','0','0','','','','0','-1','','','',NULL,'9999');
193
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('080','z','Nummerets karakter','Nummerets karakter','0','0','0','0','','','','0','-1','','','',NULL,'9999');
194
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('082','2','Klassifikasjonsutgave','Klassifikasjonsutgave','0','0','0','0','','','','0','-1','','','',NULL,'9999');
195
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('082','7','Del av dokumentet som klassifikasjonskoden gjelder','Del av dokumentet som klassifikasjonskoden gjelder','0','0','0','0','','','','0','-1','','','',NULL,'9999');
196
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('082','a','Klassifikasjonsnummer','Klassifikasjonsnummer','0','0','0','0','','','','0','-1','','','',NULL,'9999');
197
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('082','e','Oppslagsterm til emneregister','Oppslagsterm til emneregister','0','0','0','0','','','','0','-1','','','',NULL,'9999');
198
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('082','x','Hjelpetabeller','Hjelpetabeller','0','0','0','0','','','','0','-1','','','',NULL,'9999');
199
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('082','z','Nummerets karakter','Nummerets karakter','0','0','0','0','','','','0','-1','','','',NULL,'9999');
200
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('084','7','Del av dokumentet som klassifikasjonskoden gjelder','Del av dokumentet som klassifikasjonskoden gjelder','0','0','0','0','','','','0','-1','','','',NULL,'9999');
201
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('084','a','Klassifikasjonsnummer','Klassifikasjonsnummer','0','0','0','0','','','','0','-1','','','',NULL,'9999');
202
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('084','z','Nummerets karakter','Nummerets karakter','0','0','0','0','','','','0','-1','','','',NULL,'9999');
203
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('100','8','Andre karakteristika forbundet med navn','Andre karakteristika forbundet med navn','0','0','0','1','','','','0','0','','','',NULL,'9999');
204
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('100','a','Navn','Navn','0','0','biblio.author','1','','','','0','0','','','',NULL,'9999');
205
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('100','b','Nummer','Nummer','0','0','0','1','','','','0','0','','','',NULL,'9999');
206
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('100','c','Andre tilføyelser','Andre tilføyelser','0','0','0','1','','','','0','0','','','',NULL,'9999');
207
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('100','d','Ã…rstall forbundet med navn','Ã…rstall forbundet med navn','0','0','0','1','','','','0','0','','','',NULL,'9999');
208
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('100','e','Betegnelse for funksjon','Betegnelse for funksjon','0','0','0','1','','','','0','0','','','',NULL,'9999');
209
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('100','j','Nasjonalitet','Nasjonalitet','0','0','0','1','','','','0','0','','','',NULL,'9999');
210
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('100','q','Mer fullstendig navneform','Mer fullstendig navneform','0','0','0','1','','','','0','0','','','',NULL,'9999');
211
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('100','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a','0','0','0','1','','','','0','0','','','',NULL,'9999');
212
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('110','a','Navn','Navn','0','0','0','1','','','','0','-1','','','',NULL,'9999');
213
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('110','b','Underavdeling','Underavdeling','0','0','0','1','','','','0','-1','','','',NULL,'9999');
214
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('110','c','Sted','Sted','0','0','0','1','','','','0','-1','','','',NULL,'9999');
215
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('110','d','Dato','Dato','0','0','0','1','','','','0','-1','','','',NULL,'9999');
216
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('110','e','Betegnelse for funksjon','Betegnelse for funksjon','0','0','0','1','','','','0','-1','','','',NULL,'9999');
217
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('110','g','Diverse opplysninger','Diverse opplysninger','0','0','0','1','','','','0','-1','','','',NULL,'9999');
218
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('110','n','Nummer','Nummer','0','0','0','1','','','','0','-1','','','',NULL,'9999');
219
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('110','q','Forklarende tilføyelse','Forklarende tilføyelse','0','0','0','1','','','','0','-1','','','',NULL,'9999');
220
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('110','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a','0','0','0','1','','','','0','-1','','','',NULL,'9999');
221
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('111','a','Navn (24.7-.8)','Navn (24.7-.8)','0','0','0','1','','','','0','-1','','','',NULL,'9999');
222
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('111','c','Sted','Sted','0','0','0','1','','','','0','-1','','','',NULL,'9999');
223
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('111','d','Dato','Dato','0','0','0','1','','','','0','-1','','','',NULL,'9999');
224
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('111','g','Diverse opplysninger','Diverse opplysninger','0','0','0','1','','','','0','-1','','','',NULL,'9999');
225
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('111','n','Nummer','Nummer','0','0','0','1','','','','0','-1','','','',NULL,'9999');
226
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('111','q','Forklarende tilføyelse','Forklarende tilføyelse','0','0','0','1','','','','0','-1','','','',NULL,'9999');
227
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('111','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a','0','0','0','1','','','','0','-1','','','',NULL,'9999');
228
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('130','a','Standardtittel (25)','Standardtittel (25)','0','0','0','1','','','','0','-1','','','',NULL,'9999');
229
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('130','b','Underordnet enhet','Underordnet enhet','0','0','0','1','','','','0','-1','','','',NULL,'9999');
230
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('130','d','Ã…rstall','Ã…rstall','0','0','0','1','','','','0','-1','','','',NULL,'9999');
231
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('130','f','Utgivelsesår','Utgivelsesår','0','0','0','1','','','','0','-1','','','',NULL,'9999');
232
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('130','h','Generell materialbetegnelse','Generell materialbetegnelse','0','0','0','1','','','','0','-1','','','',NULL,'9999');
233
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('130','i','Serienummer, opusnummer, nummer fra verkfortegnelse','Serienummer, opusnummer, nummer fra verkfortegnelse','0','0','0','1','','','','0','-1','','','',NULL,'9999');
234
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('130','k','Form','Form','0','0','0','1','','','','0','-1','','','',NULL,'9999');
235
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('130','l','Språk i dokumentet','Språk i dokumentet','0','0','0','1','','','','0','-1','','','',NULL,'9999');
236
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('130','m','Besetning (25.29)[Mus]','Besetning (25.29)[Mus]','0','0','0','1','','','','0','-1','','','',NULL,'9999');
237
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('130','n','Nummer for del av verk','Nummer for del av verk','0','0','0','1','','','','0','-1','','','',NULL,'9999');
238
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('130','o','Arrangement (25.31B2)[Mus]','Arrangement (25.31B2)[Mus]','0','0','0','1','','','','0','-1','','','',NULL,'9999');
239
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('130','p','Tittel for del av verk','Tittel for del av verk','0','0','0','1','','','','0','-1','','','',NULL,'9999');
240
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('130','q','Forklarende tilføyelse','Forklarende tilføyelse','0','0','0','1','','','','0','-1','','','',NULL,'9999');
241
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('130','r','Toneart (25.31A5) [Mus]','Toneart (25.31A5) [Mus]','0','0','0','1','','','','0','-1','','','',NULL,'9999');
242
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('130','s','Versjon','Versjon','0','0','0','1','','','','0','-1','','','',NULL,'9999');
243
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('130','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a','0','0','0','1','','','','0','-1','','','',NULL,'9999');
244
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('210','a','Forkortet tittel','Forkortet tittel','0','0','0','2','','','','0','-1','','','',NULL,'9999');
245
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('210','b','Forklarende tilføyelser','Forklarende tilføyelser','0','0','0','2','','','','0','-1','','','',NULL,'9999');
246
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('222','a','Nøkkeltittel','Nøkkeltittel','0','0','0','2','','','','0','-1','','','',NULL,'9999');
247
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('222','b','Forklarende tilføyelser','Forklarende tilføyelser','0','0','0','2','','','','0','-1','','','',NULL,'9999');
248
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('240','a','Tittel','Tittel','0','0','biblio.unititle','2','','','','0','-1','','','',NULL,'9999');
249
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('240','b','Annen tittelinformasjon','Annen tittelinformasjon','0','0','0','2','','','','0','-1','','','',NULL,'9999');
250
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('240','d','Ã…rstall','Ã…rstall','0','0','0','2','','','','0','-1','','','',NULL,'9999');
251
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('240','f','Utgivelsesår (25.31A6)','Utgivelsesår (25.31A6)','0','0','0','2','','','','0','-1','','','',NULL,'9999');
252
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('240','g','Diverse opplysninger (25.31A6)','Diverse opplysninger (25.31A6)','0','0','0','2','','','','0','-1','','','',NULL,'9999');
253
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('240','h','Generell materialbetegnelse','Generell materialbetegnelse','0','0','0','2','','','','0','-1','','','',NULL,'9999');
254
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('240','i','Serienummer, opusnummer, nummer fra tematisk verkfortegnelse','Serienummer, opusnummer, nummer fra tematisk verkfortegnelse','0','0','0','2','','','','0','-1','','','',NULL,'9999');
255
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('240','k','Form','Form','0','0','0','2','','','','0','-1','','','',NULL,'9999');
256
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('240','l','Språk','Språk','0','0','0','2','','','','0','-1','','','',NULL,'9999');
257
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('240','m','Besetning (25.29)','Besetning (25.29)','0','0','0','2','','','','0','-1','','','',NULL,'9999');
258
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('240','n','Nummer for del av verk','Nummer for del av verk','0','0','0','2','','','','0','-1','','','',NULL,'9999');
259
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('240','o','Arrangement for musikk','Arrangement for musikk','0','0','0','2','','','','0','-1','','','',NULL,'9999');
260
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('240','p','Tittel for del av verk','Tittel for del av verk','0','0','0','2','','','','0','-1','','','',NULL,'9999');
261
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('240','q','Forklarende tilføyelse','Forklarende tilføyelse','0','0','0','2','','','','0','-1','','','',NULL,'9999');
262
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('240','r','Toneart  (25.31A5) [Mus]','Toneart  (25.31A5) [Mus]','0','0','0','2','','','','0','-1','','','',NULL,'9999');
263
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('240','s','Versjon','Versjon','0','0','0','2','','','','0','-1','','','',NULL,'9999');
264
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('240','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a','0','0','0','2','','','','0','-1','','','',NULL,'9999');
265
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('245','a','Tittel','Tittel','0','0','biblio.title','2','','','','0','0','','','',NULL,'9999');
266
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('245','b','Annen tittelinformasjon','Annen tittelinformasjon','0','0','biblio.subtitle','2','','','','0','0','','','',NULL,'9999');
267
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('245','c','Ansvarsangivelse','Ansvarsangivelse','0','0','0','2','','','','0','0','','','',NULL,'9999');
268
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('245','h','Generell materialbetegnelse','Generell materialbetegnelse','0','0','0','2','','','','0','0','','','',NULL,'9999');
269
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('245','n','Nummer for del av verk','Nummer for del av verk','0','0','biblio.part_number','2','','','','0','0','','','',NULL,'9999');
270
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('245','p','Tittel for del av verk','Tittel for del av verk','0','0','biblio.part_name','2','','','','0','0','','','',NULL,'9999');
271
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('245','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a','0','0','0','2','','','','0','0','','','',NULL,'9999');
272
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('246','a','Parallelltittel','Parallelltittel','0','0','0','2','','','','0','-1','','','',NULL,'9999');
273
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('246','b','Annen tittelinformasjon','Annen tittelinformasjon','0','0','0','2','','','','0','-1','','','',NULL,'9999');
274
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('246','c','Ansvarsangivelse','Ansvarsangivelse','0','0','0','2','','','','0','-1','','','',NULL,'9999');
275
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('246','f','Dato-, bind- eller heftebetegnelse [Per]','Dato-, bind- eller heftebetegnelse [Per]','0','0','0','2','','','','0','-1','','','',NULL,'9999');
276
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('246','h','Generell materialbetegnelse','Generell materialbetegnelse','0','0','0','2','','','','0','-1','','','',NULL,'9999');
277
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('246','n','Nummer for del av verk','Nummer for del av verk','0','0','0','2','','','','0','-1','','','',NULL,'9999');
278
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('246','p','Tittel for del av verk','Tittel for del av verk','0','0','0','2','','','','0','-1','','','',NULL,'9999');
279
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('246','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a','0','0','0','2','','','','0','-1','','','',NULL,'9999');
280
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('250','a','Utgave, opplag etc','Utgave, opplag etc','0','0','biblioitems.editionstatement','2','','','','0','-1','','','',NULL,'9999');
281
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('250','b','Ansvarshavende','Ansvarshavende','0','0','0','2','','','','0','-1','','','',NULL,'9999');
282
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('254','a','Fysisk presentasjon','Fysisk presentasjon','0','0','0','2','','','','0','-1','','','',NULL,'9999');
283
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('255','a','Opplysning om målestokk (3.3B)','Opplysning om målestokk (3.3B)','0','0','0','2','','','','0','-1','','','',NULL,'9999');
284
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('255','b','Opplysning om projeksjon (3.3C)','Opplysning om projeksjon (3.3C)','0','0','0','2','','','','0','-1','','','',NULL,'9999');
285
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('255','c','Opplysning om koordinater (3.3D1)','Opplysning om koordinater (3.3D1)','0','0','0','2','','','','0','-1','','','',NULL,'9999');
286
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('255','d','Opplysning om sone (3.3D2)','Opplysning om sone (3.3D2)','0','0','0','2','','','','0','-1','','','',NULL,'9999');
287
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('255','e','Opplysning om ekvinoktium (3.3D2)','Opplysning om ekvinoktium (3.3D2)','0','0','0','2','','','','0','-1','','','',NULL,'9999');
288
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('256','a','Filkarakteristika','Filkarakteristika','0','0','0','2','','','','0','-1','','','',NULL,'9999');
289
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('260','a','Sted (R)','Sted (R)','1','0','biblioitems.place','2','','','','0','-1','','','',NULL,'9999');
290
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('260','b','Navn på forlegger, distributør etc','Navn på forlegger, distributør etc','0','0','biblioitems.publishercode','2','','','','0','-1','','','',NULL,'9999');
291
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('260','c','Ã…r','Ã…r','0','0','biblio.copyrightdate','2','','','','0','-1','','','',NULL,'9999');
292
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('260','e','Trykkested eller produksjonssted','Trykkested eller produksjonssted','0','0','0','2','','','','0','-1','','','',NULL,'9999');
293
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('260','f','Trykkeriets eller produsentens navn','Trykkeriets eller produsentens navn','0','0','0','2','','','','0','-1','','','',NULL,'9999');
294
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('260','g','Trykkeår eller produksjonsår','Trykkeår eller produksjonsår','0','0','0','2','','','','0','-1','','','',NULL,'9999');
295
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('263','a','Dato','Dato','0','0','0','2','','','','0','-1','','','',NULL,'9999');
296
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('270','a','Adresse','Adresse','0','0','0','2','','','','0','-1','','','',NULL,'9999');
297
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('270','b','By','By','0','0','0','2','','','','0','-1','','','',NULL,'9999');
298
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('270','d','Land','Land','0','0','0','2','','','','0','-1','','','',NULL,'9999');
299
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('270','e','Postkode','Postkode','0','0','0','2','','','','0','-1','','','',NULL,'9999');
300
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('270','i','Adressetype','Adressetype','0','0','0','2','','','','0','-1','','','',NULL,'9999');
301
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('270','k','Telefonnummer (R)','Telefonnummer (R)','1','0','0','2','','','','0','-1','','','',NULL,'9999');
302
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('270','l','Telefaksnummer (R)','Telefaksnummer (R)','1','0','0','2','','','','0','-1','','','',NULL,'9999');
303
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('270','m','E-post adresse (R)','E-post adresse (R)','1','0','0','2','','','','0','-1','','','',NULL,'9999');
304
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('270','p','Kontaktperson (R)','Kontaktperson (R)','1','0','0','2','','','','0','-1','','','',NULL,'9999');
305
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('270','z','Note','Note','0','0','0','2','','','','0','-1','','','',NULL,'9999');
306
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('300','a','Omfang','Omfang','0','0','biblioitems.pages','3','','','','0','0','','','',NULL,'9999');
307
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('300','b','Illustrasjonsmateriale og andre fysiske detaljer','Illustrasjonsmateriale og andre fysiske detaljer','0','0','biblioitems.illus','3','','','','0','0','','','',NULL,'9999');
308
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('300','c','Format','Format','0','0','biblioitems.size','3','','','','0','0','','','',NULL,'9999');
309
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('300','e','Bilag','Bilag','0','0','0','3','','','','0','0','','','',NULL,'9999');
310
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('306','a','Varighet (R)','Varighet (R)','1','0','0','3','','','','0','-1','','','',NULL,'9999');
311
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('310','a','Periodisitet (R)','Periodisitet (R)','1','0','0','3','','','','0','-1','','','',NULL,'9999');
312
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('350','a','Pris (R)','Pris (R)','1','0','0','3','','','','0','-1','','','',NULL,'9999');
313
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('350','b','Fysisk beskrivelse (R)','Fysisk beskrivelse (R)','1','0','0','3','','','','0','-1','','','',NULL,'9999');
314
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('362','a','Numeriske og/eller alfabetiske og kronologiske betegnelser (R)','Numeriske og/eller alfabetiske og kronologiske betegnelser (R)','1','0','biblioitems.volumedesc','3','','','','0','-1','','','',NULL,'9999');
315
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('440','a','Serietittel (1.6B-1.6D)','Serietittel (1.6B-1.6D)','0','0','biblio.seriestitle','4','','','','0','-1','','','',NULL,'9999');
316
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('440','c','Ansvarsangivelse (1.6E)','Ansvarsangivelse (1.6E)','0','0','0','4','','','','0','-1','','','',NULL,'9999');
317
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('440','n','Underseriens alfabetiske eller numeriske betegnelse','Underseriens alfabetiske eller numeriske betegnelse','0','0','biblioitems.number','4','','','','0','-1','','','',NULL,'9999');
318
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('440','p','Tittel for underserie','Tittel for underserie','0','0','0','4','','','','0','-1','','','',NULL,'9999');
319
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('440','v','Nummerering innen serien','Nummerering innen serien','0','0','biblioitems.volume','4','','','','0','-1','','','',NULL,'9999');
320
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('440','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a','0','0','0','4','','','','0','-1','','','',NULL,'9999');
321
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('440','x','ISSN','ISSN','0','0','0','4','','','','0','-1','','','',NULL,'9999');
322
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('440','y','Nummerering i underserien','Nummerering i underserien','0','0','0','4','','','','0','-1','','','',NULL,'9999');
323
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('490','a','Serietittel','Serietittel','0','0','biblioitems.seriestitle','4','','','','0','-1','','','',NULL,'9999');
324
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('500','a','Notens tekst','Notens tekst','0','0','biblio.notes','5','','','','0','0','','','',NULL,'9999');
325
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('501','a','Notens tekst','Notens tekst','0','0','0','5','','','','0','-1','','','',NULL,'9999');
326
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('502','a','Notens tekst','Notens tekst','0','0','0','5','','','','0','-1','','','',NULL,'9999');
327
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('503','a','Notens tekst','Notens tekst','0','0','0','5','','','','0','-1','','','',NULL,'9999');
328
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('505','a','Notens tekst','Notens tekst','0','0','0','5','','','','0','-1','','','',NULL,'9999');
329
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('508','a','Notens tekst','Notens tekst','0','0','0','5','','','','0','-1','','','',NULL,'9999');
330
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('510','a','Notens tekst','Notens tekst','0','0','0','5','','','','0','-1','','','',NULL,'9999');
331
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('511','a','Notens tekst','Notens tekst','0','0','0','5','','','','0','-1','','','',NULL,'9999');
332
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('512','a','Notens tekst','Notens tekst','0','0','0','5','','','','0','-1','','','',NULL,'9999');
333
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('516','a','Notens tekst','Notens tekst','0','0','0','5','','','','0','-1','','','',NULL,'9999');
334
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('520','a','Notens tekst','Notens tekst','0','0','biblio.abstract','5','','','','0','-1','','','',NULL,'9999');
335
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('521','a','Notens tekst','Notens tekst','0','0','0','5','','','','0','-1','','','',NULL,'9999');
336
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('525','a','Notens tekst','Notens tekst','0','0','0','5','','','','0','-1','','','',NULL,'9999');
337
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('530','a','Notens tekst','Notens tekst','0','0','0','5','','','','0','-1','','','',NULL,'9999');
338
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('531','a','Notens tekst','Notens tekst','0','0','0','5','','','','0','-1','','','',NULL,'9999');
339
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('532','a','Notens tekst','Notens tekst','0','0','0','5','','','','0','-1','','','',NULL,'9999');
340
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('533','a','Notens tekst','Notens tekst','0','0','0','5','','','','0','-1','','','',NULL,'9999');
341
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('538','a','Notens tekst','Notens tekst','0','0','0','5','','','','0','-1','','','',NULL,'9999');
342
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('539','a','Notens tekst','Notens tekst','0','0','0','5','','','','0','-1','','','',NULL,'9999');
343
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('546','a','Notens tekst','Notens tekst','0','0','0','5','','','','0','-1','','','',NULL,'9999');
344
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('571','a','Notens tekst','Notens tekst','0','0','0','5','','','','0','-1','','','',NULL,'9999');
345
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('572','a','Notens tekst','Notens tekst','0','0','0','5','','','','0','-1','','','',NULL,'9999');
346
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('573','a','Notens tekst','Notens tekst','0','0','0','5','','','','0','-1','','','',NULL,'9999');
347
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('574','a','Notens tekst','Notens tekst','0','0','0','5','','','','0','-1','','','',NULL,'9999');
348
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('600','0','Kvalifikator (R)','Kvalifikator (R)','0','0','0','6','','','','0','-1','','','',NULL,'9999');
349
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('600','1','Klassifikasjonskode','Klassifikasjonskode','0','0','0','6','','','','0','-1','','','',NULL,'9999');
350
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('600','2','Kilde for emneinnførselen','Kilde for emneinnførselen','0','0','0','6','','','','0','-1','','','',NULL,'9999');
351
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('600','7','Del av dokumentet som emneinnførselen gjelder','Del av dokumentet som emneinnførselen gjelder','0','0','0','6','','','','0','-1','','','',NULL,'9999');
352
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('600','8','Andre karakteristika forbundet med navn','Andre karakteristika forbundet med navn','0','0','0','6','','','','0','-1','','','',NULL,'9999');
353
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('600','a','Navn','Navn','0','0','0','6','','','','0','-1','','','',NULL,'9999');
354
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('600','b','Nummer','Nummer','0','0','0','6','','','','0','-1','','','',NULL,'9999');
355
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('600','c','Andre tilføyelser','Andre tilføyelser','0','0','0','6','','','','0','-1','','','',NULL,'9999');
356
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('600','d','Ã…rstall forbundet med navn','Ã…rstall forbundet med navn','0','0','0','6','','','','0','-1','','','',NULL,'9999');
357
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('600','i','Serienummer, opusnummer, nummer fra verkfortegnelse (25.31A1-A4) [Mus]','Serienummer, opusnummer, nummer fra verkfortegnelse (25.31A1-A4) [Mus]','0','0','0','6','','','','0','-1','','','',NULL,'9999');
358
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('600','j','Nasjonalitet','Nasjonalitet','0','0','0','6','','','','0','-1','','','',NULL,'9999');
359
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('600','m','Besetning (25.29) [Mus]','Besetning (25.29) [Mus]','0','0','0','6','','','','0','-1','','','',NULL,'9999');
360
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('600','n','Nummer for del av verk','Nummer for del av verk','0','0','0','6','','','','0','-1','','','',NULL,'9999');
361
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('600','o','Arrangement (25.31B2) [Mus]','Arrangement (25.31B2) [Mus]','0','0','0','6','','','','0','-1','','','',NULL,'9999');
362
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('600','p','Tittel for del av verk','Tittel for del av verk','0','0','0','6','','','','0','-1','','','',NULL,'9999');
363
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('600','q','Mer fullstendig navneform','Mer fullstendig navneform','0','0','0','6','','','','0','-1','','','',NULL,'9999');
364
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('600','r','Toneart [Mus]','Toneart [Mus]','0','0','0','6','','','','0','-1','','','',NULL,'9999');
365
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('600','t','Tittel for dokument som er emne','Tittel for dokument som er emne','0','0','0','6','','','','0','-1','','','',NULL,'9999');
366
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('600','u','Sorteringsdelfelt for delfelt $t','Sorteringsdelfelt for delfelt $t','0','0','0','6','','','','0','-1','','','',NULL,'9999');
367
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('600','v','Form underavdeling','Form underavdeling','0','0','0','6','','','','0','-1','','','',NULL,'9999');
368
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('600','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a','0','0','0','6','','','','0','-1','','','',NULL,'9999');
369
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('600','x','Underavdeling (R)','Underavdeling (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
370
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('600','y','Kronologisk underavdeling (R)','Kronologisk underavdeling (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
371
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('600','z','Geografisk underavdeling (R)','Geografisk underavdeling (R)','0','0','0','6','','','','0','-1','','','',NULL,'9999');
372
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('610','0','Kvalifikator (R)','Kvalifikator (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
373
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('610','1','Klassifikasjonskode','Klassifikasjonskode','0','0','0','6','','','','0','-1','','','',NULL,'9999');
374
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('610','2','Kilde for emneinnførselen','Kilde for emneinnførselen','0','0','0','6','','','','0','-1','','','',NULL,'9999');
375
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('610','7','Del av dokumentet som emneinnførselen gjelder','Del av dokumentet som emneinnførselen gjelder','0','0','0','6','','','','0','-1','','','',NULL,'9999');
376
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('610','a','Navn','Navn','0','0','0','6','','','','0','-1','','','',NULL,'9999');
377
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('610','b','Underavdeling','Underavdeling','0','0','0','6','','','','0','-1','','','',NULL,'9999');
378
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('610','c','Sted (R)','Sted (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
379
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('610','d','Dato (R)','Dato (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
380
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('610','g','Diverse opplysninger (R)','Diverse opplysninger (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
381
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('610','i','Serienummer, opusnummer, nummer fra verkfortegnelse','Serienummer, opusnummer, nummer fra verkfortegnelse','0','0','0','6','','','','0','-1','','','',NULL,'9999');
382
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('610','m','Besetning [Mus]','Besetning [Mus]','0','0','0','6','','','','0','-1','','','',NULL,'9999');
383
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('610','n','Nummer','Nummer','0','0','0','6','','','','0','-1','','','',NULL,'9999');
384
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('610','o','Arrangement [Mus]','Arrangement [Mus]','0','0','0','6','','','','0','-1','','','',NULL,'9999');
385
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('610','q','Forklarende tilføyelse','Forklarende tilføyelse','0','0','0','6','','','','0','-1','','','',NULL,'9999');
386
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('610','r','Toneart (25.31A5) [Mus]','Toneart (25.31A5) [Mus]','0','0','0','6','','','','0','-1','','','',NULL,'9999');
387
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('610','t','Tittel for dokument som er emne','Tittel for dokument som er emne','0','0','0','6','','','','0','-1','','','',NULL,'9999');
388
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('610','u','Sorteringsdelfelt for delfelt $t','Sorteringsdelfelt for delfelt $t','0','0','0','6','','','','0','-1','','','',NULL,'9999');
389
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('610','v','Form underavdeling','Form underavdeling','0','0','0','6','','','','0','-1','','','',NULL,'9999');
390
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('610','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a','0','0','0','6','','','','0','-1','','','',NULL,'9999');
391
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('610','x','Underavdeling (R)','Underavdeling (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
392
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('610','y','Kronologisk underavdeling (R)','Kronologisk underavdeling (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
393
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('610','z','Geografisk underavdeling (R)','Geografisk underavdeling (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
394
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('611','0','Kvalifikator (R)','Kvalifikator (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
395
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('611','1','Klassifikasjonskode','Klassifikasjonskode','0','0','0','6','','','','0','-1','','','',NULL,'9999');
396
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('611','2','Kilde for emneinnførselen','Kilde for emneinnførselen','0','0','0','6','','','','0','-1','','','',NULL,'9999');
397
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('611','7','Del av dokumentet som emneinnførselen gjelder','Del av dokumentet som emneinnførselen gjelder','0','0','0','6','','','','0','-1','','','',NULL,'9999');
398
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('611','a','Navn (24.7, 24.8)','Navn (24.7, 24.8)','0','0','0','6','','','','0','-1','','','',NULL,'9999');
399
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('611','c','Sted','Sted','0','0','0','6','','','','0','-1','','','',NULL,'9999');
400
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('611','d','Dato (R)','Dato (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
401
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('611','g','Diverse opplysninger','Diverse opplysninger','0','0','0','6','','','','0','-1','','','',NULL,'9999');
402
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('611','n','Nummer','Nummer','0','0','0','6','','','','0','-1','','','',NULL,'9999');
403
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('611','q','Forklarende tilføyelse','Forklarende tilføyelse','0','0','0','6','','','','0','-1','','','',NULL,'9999');
404
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('611','t','Tittel for dokument som er emne','Tittel for dokument som er emne','0','0','0','6','','','','0','-1','','','',NULL,'9999');
405
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('611','u','Sorteringsdelfelt for delfelt $t','Sorteringsdelfelt for delfelt $t','0','0','0','6','','','','0','-1','','','',NULL,'9999');
406
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('611','v','Form underavdeling','Form underavdeling','0','0','0','6','','','','0','-1','','','',NULL,'9999');
407
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('611','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a','0','0','0','6','','','','0','-1','','','',NULL,'9999');
408
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('611','x','Underavdeling (R)','Underavdeling (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
409
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('611','y','Kronologisk underavdeling','Kronologisk underavdeling','0','0','0','6','','','','0','-1','','','',NULL,'9999');
410
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('611','z','Geografisk underavdeling','Geografisk underavdeling','0','0','0','6','','','','0','-1','','','',NULL,'9999');
411
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('630','0','Kvalifikator (R)','Kvalifikator (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
412
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('630','1','Klassifikasjonskode','Klassifikasjonskode','1','0','0','6','','','','0','-1','','','',NULL,'9999');
413
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('630','2','Kilde for emneinnførselen','Kilde for emneinnførselen','0','0','0','6','','','','0','-1','','','',NULL,'9999');
414
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('630','7','Del av dokumentet som emneinnførselen gjelder','Del av dokumentet som emneinnførselen gjelder','0','0','0','6','','','','0','-1','','','',NULL,'9999');
415
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('630','a','Standardtittel (25)','Standardtittel (25)','0','0','0','6','','','','0','-1','','','',NULL,'9999');
416
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('630','b','Underordnet enhet','Underordnet enhet','0','0','0','6','','','','0','-1','','','',NULL,'9999');
417
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('630','d','Ã…rstall (R)','Ã…rstall (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
418
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('630','f','Utgivelsesår','Utgivelsesår','0','0','0','6','','','','0','-1','','','',NULL,'9999');
419
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('630','i','Serienummer, opusnummer, nummer fra verkfortegnelse','Serienummer, opusnummer, nummer fra verkfortegnelse','0','0','0','6','','','','0','-1','','','',NULL,'9999');
420
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('630','k','Form','Form','0','0','0','6','','','','0','-1','','','',NULL,'9999');
421
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('630','l','Språk i omtalt dokument','Språk i omtalt dokument','0','0','0','6','','','','0','-1','','','',NULL,'9999');
422
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('630','m','Besetning (25.29) [Mus]','Besetning (25.29) [Mus]','0','0','0','6','','','','0','-1','','','',NULL,'9999');
423
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('630','n','Nummer for del av verk','Nummer for del av verk','0','0','0','6','','','','0','-1','','','',NULL,'9999');
424
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('630','o','Arrangement (25.31B2) [Mus]','Arrangement (25.31B2) [Mus]','0','0','0','6','','','','0','-1','','','',NULL,'9999');
425
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('630','p','Tittel for del av verk','Tittel for del av verk','0','0','0','6','','','','0','-1','','','',NULL,'9999');
426
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('630','q','Forklarende tilføyelse','Forklarende tilføyelse','0','0','0','6','','','','0','-1','','','',NULL,'9999');
427
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('630','r','Toneart (25.31A5) [Mus]','Toneart (25.31A5) [Mus]','0','0','0','6','','','','0','-1','','','',NULL,'9999');
428
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('630','s','Versjon av omtalt dokument','Versjon av omtalt dokument','0','0','0','6','','','','0','-1','','','',NULL,'9999');
429
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('630','v','Form underavdeling','Form underavdeling','0','0','0','6','','','','0','-1','','','',NULL,'9999');
430
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('630','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a','0','0','0','6','','','','0','-1','','','',NULL,'9999');
431
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('630','x','Underavdeling (R)','Underavdeling (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
432
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('630','y','Kronologisk underavdeling (R)','Kronologisk underavdeling (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
433
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('630','z','Geografisk underavdeling (R)','Geografisk underavdeling (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
434
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('640','0','Kvalifikator (R)','Kvalifikator (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
435
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('640','1','Klassifikasjonskode','Klassifikasjonskode','0','0','0','6','','','','0','-1','','','',NULL,'9999');
436
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('640','2','Kilde for emneinnførselen','Kilde for emneinnførselen','0','0','0','6','','','','0','-1','','','',NULL,'9999');
437
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('640','7','Del av dokumentet som emneinnførselen gjelder','Del av dokumentet som emneinnførselen gjelder','0','0','0','6','','','','0','-1','','','',NULL,'9999');
438
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('640','a','Tittel','Tittel','0','0','0','6','','','','0','-1','','','',NULL,'9999');
439
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('640','n','Nummer for del av verk (1.1B9, 12.1B3-4)','Nummer for del av verk (1.1B9, 12.1B3-4)','0','0','0','6','','','','0','-1','','','',NULL,'9999');
440
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('640','p','Tittel for del av verk','Tittel for del av verk','0','0','0','6','','','','0','-1','','','',NULL,'9999');
441
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('640','v','Form underavdeling','Form underavdeling','0','0','0','6','','','','0','-1','','','',NULL,'9999');
442
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('640','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a','0','0','0','6','','','','0','-1','','','',NULL,'9999');
443
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('640','x','Underavdeling (R)','Underavdeling (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
444
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('640','y','Kronologisk underavdeling (R)','Kronologisk underavdeling (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
445
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('640','z','Geografisk underavdeling (R)','Geografisk underavdeling (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
446
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('650','0','Kvalifikator (R)','Kvalifikator (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
447
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('650','1','Klassifikasjonskode','Klassifikasjonskode','0','0','0','6','','','','0','-1','','','',NULL,'9999');
448
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('650','2','Kilde for emneinnførselen','Kilde for emneinnførselen','0','0','0','6','','','','0','-1','','','',NULL,'9999');
449
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('650','7','Del av dokumentet som emneinnførselen gjelder','Del av dokumentet som emneinnførselen gjelder','0','0','0','6','','','','0','-1','','','',NULL,'9999');
450
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('650','9','Språk eller språkform','Språk eller språkform','0','0','0','6','','','','0','-1','','','',NULL,'9999');
451
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('650','a','Emneord','Emneord','0','0',NULL,'6','','','','0','-1','','','',NULL,'9999');
452
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('650','c','Aktive datoer','Aktive datoer','0','0','0','6','','','','0','-1','','','',NULL,'9999');
453
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('650','d','Sted','Sted','0','0','0','6','','','','0','-1','','','',NULL,'9999');
454
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('650','q','Forklarende tilføyelser','Forklarende tilføyelser','0','0','0','6','','','','0','-1','','','',NULL,'9999');
455
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('650','v','Form underavdeling','Form underavdeling','0','0','0','6','','','','0','-1','','','',NULL,'9999');
456
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('650','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a','0','0','0','6','','','','0','-1','','','',NULL,'9999');
457
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('650','x','Underavdeling (R)','Underavdeling (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
458
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('650','y','Kronologisk underavdeling (R)','Kronologisk underavdeling (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
459
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('650','z','Geografisk underavdeling (R)','Geografisk underavdeling (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
460
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('651','0','Kvalifikator (R)','Kvalifikator (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
461
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('651','1','Klassifikasjonskode','Klassifikasjonskode','0','0','0','6','','','','0','-1','','','',NULL,'9999');
462
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('651','2','Kilde for emneinnførselen','Kilde for emneinnførselen','0','0','0','6','','','','0','-1','','','',NULL,'9999');
463
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('651','7','Del av dokumentet som emneinnførselen gjelder','Del av dokumentet som emneinnførselen gjelder','0','0','0','6','','','','0','-1','','','',NULL,'9999');
464
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('651','9','Språk eller språkform','Språk eller språkform','0','0','0','6','','','','0','-1','','','',NULL,'9999');
465
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('651','a','Stedsnavn eller område','Stedsnavn eller område','0','0','0','6','','','','0','-1','','','',NULL,'9999');
466
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('651','q','Forklarende tilføyelser','Forklarende tilføyelser','0','0','0','6','','','','0','-1','','','',NULL,'9999');
467
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('651','v','Form underavdeling','Form underavdeling','0','0','0','6','','','','0','-1','','','',NULL,'9999');
468
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('651','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a','0','0','0','6','','','','0','-1','','','',NULL,'9999');
469
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('651','x','Underavdeling (R)','Underavdeling (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
470
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('651','y','Kronologisk underavdeling (R)','Kronologisk underavdeling (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
471
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('651','z','Geografisk underavdeling (R)','Geografisk underavdeling (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
472
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('652','7','Del av dokumentet som emneinnførselen gjelder','Del av dokumentet som emneinnførselen gjelder','0','0','0','6','','','','0','-1','','','',NULL,'9999');
473
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('652','9','Språk eller språkform','Språk eller språkform','0','0','0','6','','','','0','-1','','','',NULL,'9999');
474
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('652','a','Betegnelse for komposisjonstype','Betegnelse for komposisjonstype','0','0','0','6','','','','0','-1','','','',NULL,'9999');
475
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('652','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a','0','0','0','6','','','','0','-1','','','',NULL,'9999');
476
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('653','0','Kvalifikator (R)','Kvalifikator (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
477
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('653','1','Klassifikasjonskode','Klassifikasjonskode','0','0','0','6','','','','0','-1','','','',NULL,'9999');
478
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('653','2','Kilde for emneinnførselen','Kilde for emneinnførselen','0','0','0','6','','','','0','-1','','','',NULL,'9999');
479
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('653','7','Del av dokumentet som emneinnførselen gjelder','Del av dokumentet som emneinnførselen gjelder','0','0','0','6','','','','0','-1','','','',NULL,'9999');
480
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('653','9','Språk eller språkform','Språk eller språkform','0','0','0','6','','','','0','-1','','','',NULL,'9999');
481
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('653','a','Fritt nøkkelord','Fritt nøkkelord','0','0','0','6','','','','0','-1','','','',NULL,'9999');
482
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('653','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a','0','0','0','6','','','','0','-1','','','',NULL,'9999');
483
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('655','0','Kvalifikator (R)','Kvalifikator (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
484
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('655','1','Klassifikasjonskode','Klassifikasjonskode','0','0','0','6','','','','0','-1','','','',NULL,'9999');
485
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('655','2','Kilde for emneinnførselen','Kilde for emneinnførselen','0','0','0','6','','','','0','-1','','','',NULL,'9999');
486
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('655','7','Del av dokumentet som emneinnførselen gjelder','Del av dokumentet som emneinnførselen gjelder','0','0','0','6','','','','0','-1','','','',NULL,'9999');
487
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('655','9','Språk eller språkform','Språk eller språkform','0','0','0','6','','','','0','-1','','','',NULL,'9999');
488
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('655','a','Genre/form','Genre/form','0','0','0','6','','','','0','-1','','','',NULL,'9999');
489
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('655','v','Form underavdeling','Form underavdeling','0','0','0','6','','','','0','-1','','','',NULL,'9999');
490
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('655','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a','0','0','0','6','','','','0','-1','','','',NULL,'9999');
491
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('655','x','Underavdeling (R)','Underavdeling (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
492
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('655','y','Kronologisk underavdeling (R)','Kronologisk underavdeling (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
493
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('655','z','Geografisk underavdeling (R)','Geografisk underavdeling (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
494
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('656','0','Kvalifikator (R)','Kvalifikator (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
495
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('656','1','Klassifikasjonskode','Klassifikasjonskode','0','0','0','6','','','','0','-1','','','',NULL,'9999');
496
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('656','2','Kilde for emneinnførselen','Kilde for emneinnførselen','0','0','0','6','','','','0','-1','','','',NULL,'9999');
497
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('656','7','Del av dokumentet som emneinnførselen gjelder','Del av dokumentet som emneinnførselen gjelder','0','0','0','6','','','','0','-1','','','',NULL,'9999');
498
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('656','9','Språk eller språkform','Språk eller språkform','0','0','0','6','','','','0','-1','','','',NULL,'9999');
499
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('656','a','Emneord','Emneord','0','0','0','6','','','','0','-1','','','',NULL,'9999');
500
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('656','v','Form underavdeling','Form underavdeling','0','0','0','6','','','','0','-1','','','',NULL,'9999');
501
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('656','x','Underavdeling (R)','Underavdeling (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
502
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('656','y','Kronologisk underavdeling (R)','Kronologisk underavdeling (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
503
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('656','z','Geografisk underavdeling (R)','Geografisk underavdeling (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
504
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('658','7','Del av dokumentet som emneinnførselen gjelder','Del av dokumentet som emneinnførselen gjelder','0','0','0','6','','','','0','-1','','','',NULL,'9999');
505
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('658','9','Språk eller språkform','Språk eller språkform','0','0','0','6','','','','0','-1','','','',NULL,'9999');
506
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('658','a','Betegnelse for besetning (R)','Betegnelse for besetning (R)','1','0','0','6','','','','0','-1','','','',NULL,'9999');
507
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('658','b','Totalt antall instrumenter','Totalt antall instrumenter','0','0','0','6','','','','0','-1','','','',NULL,'9999');
508
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('658','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a','0','0','0','6','','','','0','-1','','','',NULL,'9999');
509
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('700','7','Del av dokumentet som emneinnførselen gjelder','Del av dokumentet som emneinnførselen gjelder','0','0','0','7','','','','0','-1','','','',NULL,'9999');
510
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('700','8','Andre karakteristika forbundet med navn','Andre karakteristika forbundet med navn','0','0','0','7','','','','0','-1','','','',NULL,'9999');
511
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('700','a','Navn','Navn','0','0','','7','','','','0','-1','','','',NULL,'9999');
512
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('700','b','Nummer','Nummer','0','0','0','7','','','','0','-1','','','',NULL,'9999');
513
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('700','c','Andre tilføyelser','Andre tilføyelser','0','0','0','7','','','','0','-1','','','',NULL,'9999');
514
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('700','d','Ã…rstall forbundet med navn','Ã…rstall forbundet med navn','0','0','0','7','','','','0','-1','','','',NULL,'9999');
515
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('700','e','Betegnelse for funksjon','Betegnelse for funksjon','0','0','0','7','','','','0','-1','','','',NULL,'9999');
516
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('700','h','Materialebetegnelse','Materialebetegnelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
517
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('700','i','Serienummer, opusnummer, nummer fra verkfortegnelse','Serienummer, opusnummer, nummer fra verkfortegnelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
518
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('700','j','Nasjonalitet','Nasjonalitet','0','0','0','7','','','','0','-1','','','',NULL,'9999');
519
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('700','k','Form','Form','0','0','0','7','','','','0','-1','','','',NULL,'9999');
520
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('700','l','Språk','Språk','0','0','0','7','','','','0','-1','','','',NULL,'9999');
521
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('700','m','Besetning (25.29) [Mus]','Besetning (25.29) [Mus]','0','0','0','7','','','','0','-1','','','',NULL,'9999');
522
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('700','n','Nummer for del av verk','Nummer for del av verk','0','0','0','7','','','','0','-1','','','',NULL,'9999');
523
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('700','o','Arrangement (25.31B2) [Mus]','Arrangement (25.31B2) [Mus]','0','0','0','7','','','','0','-1','','','',NULL,'9999');
524
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('700','p','Tittel for del av verk','Tittel for del av verk','0','0','0','7','','','','0','-1','','','',NULL,'9999');
525
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('700','q','Mer fullstendig navneform','Mer fullstendig navneform','0','0','0','7','','','','0','-1','','','',NULL,'9999');
526
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('700','r','Toneart [Mus]','Toneart [Mus]','0','0','0','7','','','','0','-1','','','',NULL,'9999');
527
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('700','t','Tittel i biinnførselen','Tittel i biinnførselen','0','0','0','7','','','','0','-1','','','',NULL,'9999');
528
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('700','u','Sorteringsdelfelt for delfelt $t','Sorteringsdelfelt for delfelt $t','0','0','0','7','','','','0','-1','','','',NULL,'9999');
529
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('700','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a','0','0','0','7','','','','0','-1','','','',NULL,'9999');
530
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('710','7','Del av dokumentet som biinnførselen gjelder','Del av dokumentet som biinnførselen gjelder','0','0','0','7','','','','0','-1','','','',NULL,'9999');
531
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('710','a','Navn','Navn','0','0','0','7','','','','0','-1','','','',NULL,'9999');
532
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('710','b','Underavdeling','Underavdeling','0','0','0','7','','','','0','-1','','','',NULL,'9999');
533
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('710','c','Sted','Sted','0','0','0','7','','','','0','-1','','','',NULL,'9999');
534
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('710','d','Dato','Dato','0','0','0','7','','','','0','-1','','','',NULL,'9999');
535
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('710','e','Betegnelse for funksjon','Betegnelse for funksjon','0','0','0','7','','','','0','-1','','','',NULL,'9999');
536
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('710','g','Diverse opplysninger','Diverse opplysninger','0','0','0','7','','','','0','-1','','','',NULL,'9999');
537
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('710','h','Materialebetegnelse','Materialebetegnelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
538
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('710','i','Serienummer, opusnummer, nummer fra verkfortegnelse','Serienummer, opusnummer, nummer fra verkfortegnelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
539
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('710','l','Språk','Språk','0','0','0','7','','','','0','-1','','','',NULL,'9999');
540
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('710','m','Besetning [Mus]','Besetning [Mus]','0','0','0','7','','','','0','-1','','','',NULL,'9999');
541
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('710','n','Nummer','Nummer','0','0','0','7','','','','0','-1','','','',NULL,'9999');
542
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('710','o','Arrangement [Mus]','Arrangement [Mus]','0','0','0','7','','','','0','-1','','','',NULL,'9999');
543
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('710','q','Forklarende tilføyelse','Forklarende tilføyelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
544
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('710','r','Toneart (25.31A5) [Mus]','Toneart (25.31A5) [Mus]','0','0','0','7','','','','0','-1','','','',NULL,'9999');
545
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('710','t','Tittel i biinnførselen','Tittel i biinnførselen','0','0','0','7','','','','0','-1','','','',NULL,'9999');
546
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('710','u','Sorteringsdelfelt for delfelt $t','Sorteringsdelfelt for delfelt $t','0','0','0','7','','','','0','-1','','','',NULL,'9999');
547
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('710','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a','0','0','0','7','','','','0','-1','','','',NULL,'9999');
548
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('711','7','Del av dokumentet som biinnførselen gjelder','Del av dokumentet som biinnførselen gjelder','0','0','0','7','','','','0','-1','','','',NULL,'9999');
549
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('711','a','Navn (24.7, 24.8)','Navn (24.7, 24.8)','0','0','0','7','','','','0','-1','','','',NULL,'9999');
550
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('711','c','Sted','Sted','0','0','0','7','','','','0','-1','','','',NULL,'9999');
551
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('711','d','Dato','Dato','0','0','0','7','','','','0','-1','','','',NULL,'9999');
552
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('711','g','Diverse opplysninger','Diverse opplysninger','0','0','0','7','','','','0','-1','','','',NULL,'9999');
553
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('711','h','Materialebetegnelse','Materialebetegnelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
554
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('711','l','Språk','Språk','0','0','0','7','','','','0','-1','','','',NULL,'9999');
555
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('711','n','Nummer','Nummer','0','0','0','7','','','','0','-1','','','',NULL,'9999');
556
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('711','q','Forklarende tilføyelse','Forklarende tilføyelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
557
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('711','t','Tittel i biinnførselen','Tittel i biinnførselen','0','0','0','7','','','','0','-1','','','',NULL,'9999');
558
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('711','u','Sorteringsdelfelt for delfelt $t','Sorteringsdelfelt for delfelt $t','0','0','0','7','','','','0','-1','','','',NULL,'9999');
559
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('711','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a','0','0','0','7','','','','0','-1','','','',NULL,'9999');
560
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('730','7','Del av dokumentet som biinnførselen gjelder','Del av dokumentet som biinnførselen gjelder','0','0','0','7','','','','0','-1','','','',NULL,'9999');
561
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('730','a','Standardtittel (25)','Standardtittel (25)','0','0','0','7','','','','0','-1','','','',NULL,'9999');
562
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('730','b','Underordnet enhet','Underordnet enhet','0','0','0','7','','','','0','-1','','','',NULL,'9999');
563
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('730','d','Ã…rstall','Ã…rstall','0','0','0','7','','','','0','-1','','','',NULL,'9999');
564
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('730','f','Utgivelsesår','Utgivelsesår','0','0','0','7','','','','0','-1','','','',NULL,'9999');
565
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('730','h','Materialebetegnelse','Materialebetegnelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
566
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('730','i','Serienummer, opusnummer, nummer fra verkfortegnelse','Serienummer, opusnummer, nummer fra verkfortegnelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
567
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('730','k','Form','Form','0','0','0','7','','','','0','-1','','','',NULL,'9999');
568
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('730','l','Språk','Språk','0','0','0','7','','','','0','-1','','','',NULL,'9999');
569
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('730','m','Besetning(25.29) [Mus]','Besetning(25.29) [Mus]','0','0','0','7','','','','0','-1','','','',NULL,'9999');
570
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('730','n','Nummer for del av verk','Nummer for del av verk','0','0','0','7','','','','0','-1','','','',NULL,'9999');
571
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('730','o','Arrangement (25.31B2) [Mus]','Arrangement (25.31B2) [Mus]','0','0','0','7','','','','0','-1','','','',NULL,'9999');
572
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('730','p','Tittel for del av verk','Tittel for del av verk','0','0','0','7','','','','0','-1','','','',NULL,'9999');
573
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('730','q','Forklarende tilføyelse','Forklarende tilføyelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
574
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('730','r','Toneart [Mus]','Toneart [Mus]','0','0','0','7','','','','0','-1','','','',NULL,'9999');
575
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('730','s','Versjon (25.18A11)','Versjon (25.18A11)','0','0','0','7','','','','0','-1','','','',NULL,'9999');
576
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('730','t','Tittel i biinnførselen','Tittel i biinnførselen','0','0','0','7','','','','0','-1','','','',NULL,'9999');
577
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('730','u','Sorteringsdelfelt for delfelt $t','Sorteringsdelfelt for delfelt $t','0','0','0','7','','','','0','-1','','','',NULL,'9999');
578
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('730','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a','0','0','0','7','','','','0','-1','','','',NULL,'9999');
579
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('740','7','Del av dokumentet som biinnførselen gjelder','Del av dokumentet som biinnførselen gjelder','0','0','0','7','','','','0','-1','','','',NULL,'9999');
580
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('740','a','Tittel (21.30J)','Tittel (21.30J)','0','0','0','7','','','','0','-1','','','',NULL,'9999');
581
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('740','e','Type tittel','Type tittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
582
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('740','h','Materialbetegnelse','Materialbetegnelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
583
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('740','n','Nummer for del av verk','Nummer for del av verk','0','0','0','7','','','','0','-1','','','',NULL,'9999');
584
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('740','p','Tittel for del av verk','Tittel for del av verk','0','0','0','7','','','','0','-1','','','',NULL,'9999');
585
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('740','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a','0','0','0','7','','','','0','-1','','','',NULL,'9999');
586
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('752','a','Land','Land','0','0','0','7','','','','0','-1','','','',NULL,'9999');
587
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('752','b','Delstat eller fylke','Delstat eller fylke','0','0','0','7','','','','0','-1','','','',NULL,'9999');
588
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('752','c','Kommune','Kommune','0','0','0','7','','','','0','-1','','','',NULL,'9999');
589
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('752','d','By, tettsted etc','By, tettsted etc','0','0','0','7','','','','0','-1','','','',NULL,'9999');
590
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('753','a','Datamaskinfabrikat og -modell','Datamaskinfabrikat og -modell','0','0','0','7','','','','0','-1','','','',NULL,'9999');
591
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('753','b','Programmeringsspråk','Programmeringsspråk','0','0','0','7','','','','0','-1','','','',NULL,'9999');
592
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('753','c','Operativsystem','Operativsystem','0','0','0','7','','','','0','-1','','','',NULL,'9999');
593
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('760','7','Type hovedordningsord i delfelt $a','Type hovedordningsord i delfelt $a','0','0','0','7','','','','0','-1','','','',NULL,'9999');
594
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('760','a','Hovedordningsord for posten det lenkes til, hvis dette er et personnavn, korporasjonsnavn eller en standardtittel','Hovedordningsord for posten det lenkes til, hvis dette er et personnavn, korporasjonsnavn eller en standardtittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
595
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('760','b','Utgave','Utgave','0','0','0','7','','','','0','-1','','','',NULL,'9999');
596
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('760','d','Sted, forlag og dato (Ã¥r) for utgivelse','Sted, forlag og dato (Ã¥r) for utgivelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
597
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('760','e','Språkkode','Språkkode','0','0','0','7','','','','0','-1','','','',NULL,'9999');
598
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('760','f','Landekode','Landekode','0','0','0','7','','','','0','-1','','','',NULL,'9999');
599
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('760','g','Relasjonsopplysninger (R)','Relasjonsopplysninger (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
600
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('760','h','Materialbetegnelse','Materialbetegnelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
601
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('760','i','Ã…rstall i \"ren\" form (R)','Ã…rstall i \"ren\" form (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
602
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('760','k','Serie (R)','Serie (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
603
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('760','s','Standardtittel','Standardtittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
604
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('760','t','Tittel','Tittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
605
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('760','w','Lokalt systems identifikasjonsnummer (R)','Lokalt systems identifikasjonsnummer (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
606
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('760','x','ISSN','ISSN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
607
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('760','y','CODEN','CODEN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
608
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('760','z','ISBN','ISBN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
609
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('762','7','Type hovedordningsord i delfelt $a','Type hovedordningsord i delfelt $a','0','0','0','7','','','','0','-1','','','',NULL,'9999');
610
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('762','a','Hovedordningsord for posten det lenkes til, hvis dette er et personnavn, korporasjonsnavn eller en standardtittel','Hovedordningsord for posten det lenkes til, hvis dette er et personnavn, korporasjonsnavn eller en standardtittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
611
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('762','b','Utgave','Utgave','0','0','0','7','','','','0','-1','','','',NULL,'9999');
612
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('762','d','Sted, forlag og dato (Ã¥r) for utgivelse','Sted, forlag og dato (Ã¥r) for utgivelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
613
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('762','e','Språkkode','Språkkode','0','0','0','7','','','','0','-1','','','',NULL,'9999');
614
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('762','f','Landekode','Landekode','0','0','0','7','','','','0','-1','','','',NULL,'9999');
615
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('762','g','Relasjonsopplysninger (R)','Relasjonsopplysninger (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
616
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('762','h','Materialbetegnelse','Materialbetegnelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
617
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('762','i','Ã…rstall i \"ren\" form (R)','Ã…rstall i \"ren\" form (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
618
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('762','k','Serie (R)','Serie (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
619
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('762','s','Standardtittel','Standardtittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
620
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('762','t','Tittel','Tittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
621
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('762','w','Lokalt systems identifikasjonsnummer (R)','Lokalt systems identifikasjonsnummer (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
622
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('762','x','ISSN','ISSN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
623
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('762','y','CODEN','CODEN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
624
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('762','z','ISBN','ISBN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
625
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('765','7','Type hovedordningsord i delfelt $a','Type hovedordningsord i delfelt $a','0','0','0','7','','','','0','-1','','','',NULL,'9999');
626
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('765','a','Hovedordningsord for posten det lenkes til, hvis dette er et personnavn, korporasjonsnavn eller en standardtittel','Hovedordningsord for posten det lenkes til, hvis dette er et personnavn, korporasjonsnavn eller en standardtittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
627
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('765','b','Utgave','Utgave','0','0','0','7','','','','0','-1','','','',NULL,'9999');
628
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('765','d','Sted, forlag og dato (Ã¥r) for utgivelse','Sted, forlag og dato (Ã¥r) for utgivelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
629
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('765','e','Språkkode','Språkkode','0','0','0','7','','','','0','-1','','','',NULL,'9999');
630
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('765','f','Landekode','Landekode','0','0','0','7','','','','0','-1','','','',NULL,'9999');
631
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('765','g','Relasjonsopplysninger (R)','Relasjonsopplysninger (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
632
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('765','h','Materialbetegnelse','Materialbetegnelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
633
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('765','i','Ã…rstall i \"ren\" form (R)','Ã…rstall i \"ren\" form (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
634
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('765','k','Serie (R)','Serie (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
635
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('765','s','Standardtittel','Standardtittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
636
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('765','t','Tittel','Tittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
637
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('765','w','Lokalt systems identifikasjonsnummer (R)','Lokalt systems identifikasjonsnummer (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
638
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('765','x','ISSN','ISSN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
639
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('765','y','CODEN','CODEN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
640
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('765','z','ISBN','ISBN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
641
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('767','7','Type hovedordningsord i delfelt $a','Type hovedordningsord i delfelt $a','0','0','0','7','','','','0','-1','','','',NULL,'9999');
642
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('767','a','Hovedordningsord for posten det lenkes til, hvis dette er et personnavn, korporasjonsnavn eller en standardtittel','Hovedordningsord for posten det lenkes til, hvis dette er et personnavn, korporasjonsnavn eller en standardtittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
643
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('767','b','Utgave','Utgave','0','0','0','7','','','','0','-1','','','',NULL,'9999');
644
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('767','d','Sted, forlag og dato (Ã¥r) for utgivelse','Sted, forlag og dato (Ã¥r) for utgivelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
645
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('767','e','Språkkode','Språkkode','0','0','0','7','','','','0','-1','','','',NULL,'9999');
646
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('767','f','Landekode','Landekode','0','0','0','7','','','','0','-1','','','',NULL,'9999');
647
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('767','g','Relasjonsopplysninger (R)','Relasjonsopplysninger (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
648
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('767','h','Materialbetegnelse','Materialbetegnelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
649
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('767','i','Ã…rstall i \"ren\" form (R)','Ã…rstall i \"ren\" form (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
650
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('767','k','Serie (R)','Serie (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
651
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('767','s','Standardtittel','Standardtittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
652
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('767','t','Tittel','Tittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
653
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('767','w','Lokalt systems identifikasjonsnummer (R)','Lokalt systems identifikasjonsnummer (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
654
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('767','x','ISSN','ISSN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
655
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('767','y','CODEN','CODEN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
656
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('767','z','ISBN','ISBN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
657
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('770','7','Type hovedordningsord i delfelt $a','Type hovedordningsord i delfelt $a','0','0','0','7','','','','0','-1','','','',NULL,'9999');
658
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('770','a','Hovedordningsord for posten det lenkes til, hvis dette er et personnavn, korporasjonsnavn eller en standardtittel','Hovedordningsord for posten det lenkes til, hvis dette er et personnavn, korporasjonsnavn eller en standardtittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
659
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('770','b','Utgave','Utgave','0','0','0','7','','','','0','-1','','','',NULL,'9999');
660
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('770','d','Sted, forlag og dato (Ã¥r) for utgivelse','Sted, forlag og dato (Ã¥r) for utgivelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
661
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('770','e','Språkkode','Språkkode','0','0','0','7','','','','0','-1','','','',NULL,'9999');
662
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('770','f','Landekode','Landekode','0','0','0','7','','','','0','-1','','','',NULL,'9999');
663
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('770','g','Relasjonsopplysninger (R)','Relasjonsopplysninger (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
664
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('770','h','Materialbetegnelse','Materialbetegnelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
665
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('770','i','Ã…rstall i \"ren\" form (R)','Ã…rstall i \"ren\" form (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
666
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('770','k','Serie (R)','Serie (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
667
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('770','s','Standardtittel','Standardtittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
668
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('770','t','Tittel','Tittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
669
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('770','w','Lokalt systems identifikasjonsnummer (R)','Lokalt systems identifikasjonsnummer (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
670
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('770','x','ISSN','ISSN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
671
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('770','y','CODEN','CODEN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
672
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('770','z','ISBN','ISBN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
673
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('772','7','Type hovedordningsord i delfelt $a','Type hovedordningsord i delfelt $a','0','0','0','7','','','','0','-1','','','',NULL,'9999');
674
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('772','a','Hovedordningsord for posten det lenkes til, hvis dette er et personnavn, korporasjonsnavn eller en standardtittel','Hovedordningsord for posten det lenkes til, hvis dette er et personnavn, korporasjonsnavn eller en standardtittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
675
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('772','b','Utgave','Utgave','0','0','0','7','','','','0','-1','','','',NULL,'9999');
676
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('772','d','Sted, forlag og dato (Ã¥r) for utgivelse','Sted, forlag og dato (Ã¥r) for utgivelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
677
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('772','e','Språkkode','Språkkode','0','0','0','7','','','','0','-1','','','',NULL,'9999');
678
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('772','f','Landekode','Landekode','0','0','0','7','','','','0','-1','','','',NULL,'9999');
679
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('772','g','Relasjonsopplysninger (R)','Relasjonsopplysninger (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
680
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('772','h','Materialbetegnelse','Materialbetegnelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
681
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('772','i','Ã…rstall i \"ren\" form (R)','Ã…rstall i \"ren\" form (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
682
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('772','k','Serie (R)','Serie (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
683
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('772','s','Standardtittel','Standardtittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
684
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('772','t','Tittel','Tittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
685
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('772','w','Lokalt systems identifikasjonsnummer (R)','Lokalt systems identifikasjonsnummer (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
686
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('772','x','ISSN','ISSN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
687
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('772','y','CODEN','CODEN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
688
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('772','z','ISBN','ISBN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
689
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('773','7','Type hovedordningsord i delfelt $a','Type hovedordningsord i delfelt $a','0','0','0','7','','','','0','-1','','','',NULL,'9999');
690
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('773','a','Hovedordningsord for posten det lenkes til, hvis dette er et personnavn, korporasjonsnavn eller en standardtittel','Hovedordningsord for posten det lenkes til, hvis dette er et personnavn, korporasjonsnavn eller en standardtittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
691
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('773','b','Utgave','Utgave','0','0','0','7','','','','0','-1','','','',NULL,'9999');
692
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('773','d','Sted, forlag og dato (Ã¥r) for utgivelse','Sted, forlag og dato (Ã¥r) for utgivelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
693
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('773','e','Språkkode','Språkkode','0','0','0','7','','','','0','-1','','','',NULL,'9999');
694
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('773','f','Landekode','Landekode','0','0','0','7','','','','0','-1','','','',NULL,'9999');
695
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('773','g','Relasjonsopplysninger (R)','Relasjonsopplysninger (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
696
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('773','h','Materialbetegnelse','Materialbetegnelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
697
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('773','i','Ã…rstall i \"ren\" form (R)','Ã…rstall i \"ren\" form (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
698
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('773','k','Serie (R)','Serie (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
699
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('773','s','Standardtittel','Standardtittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
700
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('773','t','Tittel','Tittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
701
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('773','w','Lokalt systems identifikasjonsnummer (R)','Lokalt systems identifikasjonsnummer (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
702
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('773','x','ISSN','ISSN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
703
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('773','y','CODEN','CODEN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
704
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('773','z','ISBN','ISBN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
705
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('775','7','Type hovedordningsord i delfelt $a','Type hovedordningsord i delfelt $a','0','0','0','7','','','','0','-1','','','',NULL,'9999');
706
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('775','a','Hovedordningsord for posten det lenkes til, hvis dette er et personnavn, korporasjonsnavn eller en standardtittel','Hovedordningsord for posten det lenkes til, hvis dette er et personnavn, korporasjonsnavn eller en standardtittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
707
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('775','b','Utgave','Utgave','0','0','0','7','','','','0','-1','','','',NULL,'9999');
708
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('775','d','Sted, forlag og dato (Ã¥r) for utgivelse','Sted, forlag og dato (Ã¥r) for utgivelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
709
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('775','e','Språkkode','Språkkode','0','0','0','7','','','','0','-1','','','',NULL,'9999');
710
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('775','f','Landekode','Landekode','0','0','0','7','','','','0','-1','','','',NULL,'9999');
711
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('775','g','Relasjonsopplysninger (R)','Relasjonsopplysninger (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
712
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('775','h','Materialbetegnelse','Materialbetegnelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
713
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('775','i','Ã…rstall i \"ren\" form (R)','Ã…rstall i \"ren\" form (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
714
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('775','k','Serie (R)','Serie (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
715
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('775','s','Standardtittel','Standardtittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
716
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('775','t','Tittel','Tittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
717
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('775','w','Lokalt systems identifikasjonsnummer (R)','Lokalt systems identifikasjonsnummer (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
718
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('775','x','ISSN','ISSN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
719
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('775','y','CODEN','CODEN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
720
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('775','z','ISBN','ISBN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
721
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('776','7','Type hovedordningsord i delfelt $a','Type hovedordningsord i delfelt $a','0','0','0','7','','','','0','-1','','','',NULL,'9999');
722
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('776','a','Hovedordningsord for posten det lenkes til, hvis dette er et personnavn, korporasjonsnavn eller en standardtittel','Hovedordningsord for posten det lenkes til, hvis dette er et personnavn, korporasjonsnavn eller en standardtittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
723
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('776','b','Utgave','Utgave','0','0','0','7','','','','0','-1','','','',NULL,'9999');
724
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('776','d','Sted, forlag og dato (Ã¥r) for utgivelse','Sted, forlag og dato (Ã¥r) for utgivelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
725
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('776','e','Språkkode','Språkkode','0','0','0','7','','','','0','-1','','','',NULL,'9999');
726
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('776','f','Landekode','Landekode','0','0','0','7','','','','0','-1','','','',NULL,'9999');
727
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('776','g','Relasjonsopplysninger (R)','Relasjonsopplysninger (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
728
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('776','h','Materialbetegnelse','Materialbetegnelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
729
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('776','i','Ã…rstall i \"ren\" form (R)','Ã…rstall i \"ren\" form (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
730
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('776','k','Serie (R)','Serie (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
731
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('776','s','Standardtittel','Standardtittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
732
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('776','t','Tittel','Tittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
733
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('776','w','Lokalt systems identifikasjonsnummer (R)','Lokalt systems identifikasjonsnummer (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
734
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('776','x','ISSN','ISSN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
735
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('776','y','CODEN','CODEN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
736
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('776','z','ISBN','ISBN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
737
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('777','7','Type hovedordningsord i delfelt $a','Type hovedordningsord i delfelt $a','0','0','0','7','','','','0','-1','','','',NULL,'9999');
738
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('777','a','Hovedordningsord for posten det lenkes til, hvis dette er et personnavn, korporasjonsnavn eller en standardtittel','Hovedordningsord for posten det lenkes til, hvis dette er et personnavn, korporasjonsnavn eller en standardtittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
739
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('777','b','Utgave','Utgave','0','0','0','7','','','','0','-1','','','',NULL,'9999');
740
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('777','d','Sted, forlag og dato (Ã¥r) for utgivelse','Sted, forlag og dato (Ã¥r) for utgivelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
741
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('777','e','Språkkode','Språkkode','0','0','0','7','','','','0','-1','','','',NULL,'9999');
742
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('777','f','Landekode','Landekode','0','0','0','7','','','','0','-1','','','',NULL,'9999');
743
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('777','g','Relasjonsopplysninger (R)','Relasjonsopplysninger (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
744
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('777','h','Materialbetegnelse','Materialbetegnelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
745
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('777','i','Ã…rstall i \"ren\" form (R)','Ã…rstall i \"ren\" form (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
746
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('777','k','Serie (R)','Serie (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
747
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('777','s','Standardtittel','Standardtittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
748
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('777','t','Tittel','Tittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
749
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('777','w','Lokalt systems identifikasjonsnummer (R)','Lokalt systems identifikasjonsnummer (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
750
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('777','x','ISSN','ISSN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
751
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('777','y','CODEN','CODEN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
752
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('777','z','ISBN','ISBN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
753
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('780','7','Type hovedordningsord i delfelt $a','Type hovedordningsord i delfelt $a','0','0','0','7','','','','0','-1','','','',NULL,'9999');
754
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('780','a','Hovedordningsord for posten det lenkes til, hvis dette er et personnavn, korporasjonsnavn eller en standardtittel','Hovedordningsord for posten det lenkes til, hvis dette er et personnavn, korporasjonsnavn eller en standardtittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
755
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('780','b','Utgave','Utgave','0','0','0','7','','','','0','-1','','','',NULL,'9999');
756
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('780','d','Sted, forlag og dato (Ã¥r) for utgivelse','Sted, forlag og dato (Ã¥r) for utgivelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
757
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('780','e','Språkkode','Språkkode','0','0','0','7','','','','0','-1','','','',NULL,'9999');
758
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('780','f','Landekode','Landekode','0','0','0','7','','','','0','-1','','','',NULL,'9999');
759
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('780','g','Relasjonsopplysninger (R)','Relasjonsopplysninger (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
760
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('780','h','Materialbetegnelse','Materialbetegnelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
761
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('780','i','Ã…rstall i \"ren\" form (R)','Ã…rstall i \"ren\" form (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
762
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('780','k','Serie (R)','Serie (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
763
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('780','s','Standardtittel','Standardtittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
764
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('780','t','Tittel','Tittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
765
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('780','w','Lokalt systems identifikasjonsnummer (R)','Lokalt systems identifikasjonsnummer (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
766
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('780','x','ISSN','ISSN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
767
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('780','y','CODEN','CODEN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
768
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('780','z','ISBN','ISBN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
769
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('785','7','Type hovedordningsord i delfelt $a','Type hovedordningsord i delfelt $a','0','0','0','7','','','','0','-1','','','',NULL,'9999');
770
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('785','a','Hovedordningsord for posten det lenkes til, hvis dette er et personnavn, korporasjonsnavn eller en standardtittel','Hovedordningsord for posten det lenkes til, hvis dette er et personnavn, korporasjonsnavn eller en standardtittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
771
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('785','b','Utgave','Utgave','0','0','0','7','','','','0','-1','','','',NULL,'9999');
772
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('785','d','Sted, forlag og dato (Ã¥r) for utgivelse','Sted, forlag og dato (Ã¥r) for utgivelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
773
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('785','e','Språkkode','Språkkode','0','0','0','7','','','','0','-1','','','',NULL,'9999');
774
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('785','f','Landekode','Landekode','0','0','0','7','','','','0','-1','','','',NULL,'9999');
775
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('785','g','Relasjonsopplysninger (R)','Relasjonsopplysninger (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
776
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('785','h','Materialbetegnelse','Materialbetegnelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
777
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('785','i','Ã…rstall i \"ren\" form (R)','Ã…rstall i \"ren\" form (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
778
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('785','k','Serie (R)','Serie (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
779
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('785','s','Standardtittel','Standardtittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
780
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('785','t','Tittel','Tittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
781
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('785','w','Lokalt systems identifikasjonsnummer (R)','Lokalt systems identifikasjonsnummer (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
782
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('785','x','ISSN','ISSN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
783
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('785','y','CODEN','CODEN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
784
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('785','z','ISBN','ISBN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
785
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('787','7','Type hovedordningsord i delfelt $a','Type hovedordningsord i delfelt $a','0','0','0','7','','','','0','-1','','','',NULL,'9999');
786
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('787','a','Hovedordningsord for posten det lenkes til, hvis dette er et personnavn, korporasjonsnavn eller en standardtittel','Hovedordningsord for posten det lenkes til, hvis dette er et personnavn, korporasjonsnavn eller en standardtittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
787
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('787','b','Utgave','Utgave','0','0','0','7','','','','0','-1','','','',NULL,'9999');
788
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('787','d','Sted, forlag og dato (Ã¥r) for utgivelse','Sted, forlag og dato (Ã¥r) for utgivelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
789
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('787','e','Språkkode','Språkkode','0','0','0','7','','','','0','-1','','','',NULL,'9999');
790
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('787','f','Landekode','Landekode','0','0','0','7','','','','0','-1','','','',NULL,'9999');
791
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('787','g','Relasjonsopplysninger (R)','Relasjonsopplysninger (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
792
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('787','h','Materialbetegnelse','Materialbetegnelse','0','0','0','7','','','','0','-1','','','',NULL,'9999');
793
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('787','i','Ã…rstall i \"ren\" form (R)','Ã…rstall i \"ren\" form (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
794
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('787','k','Serie (R)','Serie (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
795
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('787','s','Standardtittel','Standardtittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
796
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('787','t','Tittel','Tittel','0','0','0','7','','','','0','-1','','','',NULL,'9999');
797
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('787','w','Lokalt systems identifikasjonsnummer (R)','Lokalt systems identifikasjonsnummer (R)','1','0','0','7','','','','0','-1','','','',NULL,'9999');
798
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('787','x','ISSN','ISSN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
799
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('787','y','CODEN','CODEN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
800
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('787','z','ISBN','ISBN','0','0','0','7','','','','0','-1','','','',NULL,'9999');
801
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('800','8','Andre karakteristika forbundet med navn','Andre karakteristika forbundet med navn','0','0','0','8','','','','0','-1','','','',NULL,'9999');
802
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('800','a','Navn','Navn','0','0','0','8','','','','0','-1','','','',NULL,'9999');
803
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('800','b','Nummer','Nummer','0','0','0','8','','','','0','-1','','','',NULL,'9999');
804
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('800','c','Andre tilføyelser','Andre tilføyelser','0','0','0','8','','','','0','-1','','','',NULL,'9999');
805
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('800','d','Ã…rstall forbundet med navn','Ã…rstall forbundet med navn','0','0','0','8','','','','0','-1','','','',NULL,'9999');
806
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('800','j','Nasjonalitet','Nasjonalitet','0','0','0','8','','','','0','-1','','','',NULL,'9999');
807
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('800','l','Språk','Språk','0','0','0','8','','','','0','-1','','','',NULL,'9999');
808
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('800','q','Mer fullstendig navneform','Mer fullstendig navneform','0','0','0','8','','','','0','-1','','','',NULL,'9999');
809
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('800','t','Tittel for serien','Tittel for serien','0','0','0','8','','','','0','-1','','','',NULL,'9999');
810
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('800','u','Sorteringsdelfelt for delfelt $t','Sorteringsdelfelt for delfelt $t','0','0','0','8','','','','0','-1','','','',NULL,'9999');
811
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('800','v','Bind, nummer etc','Bind, nummer etc','0','0','0','8','','','','0','-1','','','',NULL,'9999');
812
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('800','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a','0','0','0','8','','','','0','-1','','','',NULL,'9999');
813
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('800','x','ISSN','ISSN','0','0','0','8','','','','0','-1','','','',NULL,'9999');
814
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('810','a','Navn','Navn','0','0','0','8','','','','0','-1','','','',NULL,'9999');
815
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('810','b','Underavdeling','Underavdeling','0','0','0','8','','','','0','-1','','','',NULL,'9999');
816
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('810','c','Sted','Sted','0','0','0','8','','','','0','-1','','','',NULL,'9999');
817
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('810','d','Dato','Dato','0','0','0','8','','','','0','-1','','','',NULL,'9999');
818
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('810','g','Diverse opplysninger','Diverse opplysninger','0','0','0','8','','','','0','-1','','','',NULL,'9999');
819
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('810','l','Språk','Språk','0','0','0','8','','','','0','-1','','','',NULL,'9999');
820
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('810','n','Nummer for konferanse','Nummer for konferanse','0','0','0','8','','','','0','-1','','','',NULL,'9999');
821
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('810','q','Forklarende tilføyelse','Forklarende tilføyelse','0','0','0','8','','','','0','-1','','','',NULL,'9999');
822
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('810','t','Tittel for serien','Tittel for serien','0','0','0','8','','','','0','-1','','','',NULL,'9999');
823
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('810','u','Sorteringsdelfelt for delfelt $t','Sorteringsdelfelt for delfelt $t','0','0','0','8','','','','0','-1','','','',NULL,'9999');
824
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('810','v','Bind, nummer etc','Bind, nummer etc','0','0','0','8','','','','0','-1','','','',NULL,'9999');
825
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('810','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a','0','0','0','8','','','','0','-1','','','',NULL,'9999');
826
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('810','x','ISSN','ISSN','0','0','0','8','','','','0','-1','','','',NULL,'9999');
827
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('811','a','Navn (24.7-.8)','Navn (24.7-.8)','0','0','0','8','','','','0','-1','','','',NULL,'9999');
828
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('811','c','Sted','Sted','0','0','0','8','','','','0','-1','','','',NULL,'9999');
829
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('811','d','Dato','Dato','0','0','0','8','','','','0','-1','','','',NULL,'9999');
830
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('811','g','Diverse opplysninger','Diverse opplysninger','0','0','0','8','','','','0','-1','','','',NULL,'9999');
831
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('811','l','Språk','Språk','0','0','0','8','','','','0','-1','','','',NULL,'9999');
832
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('811','n','Nummer for konferanse, utstilling, møte etc','Nummer for konferanse, utstilling, møte etc','0','0','0','8','','','','0','-1','','','',NULL,'9999');
833
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('811','q','Forklarende tilføyelse','Forklarende tilføyelse','0','0','0','8','','','','0','-1','','','',NULL,'9999');
834
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('811','t','Tittel for serien','Tittel for serien','0','0','0','8','','','','0','-1','','','',NULL,'9999');
835
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('811','u','Sorteringsdelfelt for delfelt $t','Sorteringsdelfelt for delfelt $t','0','0','0','8','','','','0','-1','','','',NULL,'9999');
836
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('811','v','Bind, nummer etc','Bind, nummer etc','0','0','0','8','','','','0','-1','','','',NULL,'9999');
837
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('811','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a','0','0','0','8','','','','0','-1','','','',NULL,'9999');
838
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('811','x','ISSN','ISSN','0','0','0','8','','','','0','-1','','','',NULL,'9999');
839
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('830','a','Standardisert tittel','Standardisert tittel','0','0','0','8','','','','0','-1','','','',NULL,'9999');
840
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('830','b','Underordnet enhet','Underordnet enhet','0','0','0','8','','','','0','-1','','','',NULL,'9999');
841
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('830','d','Ã…rstall','Ã…rstall','0','0','0','8','','','','0','-1','','','',NULL,'9999');
842
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('830','f','Utgivelsesåret for verket som katalogiseres','Utgivelsesåret for verket som katalogiseres','0','0','0','8','','','','0','-1','','','',NULL,'9999');
843
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('830','i','Serienummer, opusnummer, nummer fra verkfortegnelse [Mus]','Serienummer, opusnummer, nummer fra verkfortegnelse [Mus]','0','0','0','8','','','','0','-1','','','',NULL,'9999');
844
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('830','k','Form','Form','0','0','0','8','','','','0','-1','','','',NULL,'9999');
845
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('830','l','Språk i dokumentet','Språk i dokumentet','0','0','0','8','','','','0','-1','','','',NULL,'9999');
846
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('830','m','Besetning [Mus]','Besetning [Mus]','0','0','0','8','','','','0','-1','','','',NULL,'9999');
847
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('830','n','Nummer for del av verk','Nummer for del av verk','0','0','0','8','','','','0','-1','','','',NULL,'9999');
848
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('830','o','Arrangement [Mus]','Arrangement [Mus]','0','0','0','8','','','','0','-1','','','',NULL,'9999');
849
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('830','p','Tittel for del av verk','Tittel for del av verk','0','0','0','8','','','','0','-1','','','',NULL,'9999');
850
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('830','q','Forklarende tilføyelse','Forklarende tilføyelse','0','0','0','8','','','','0','-1','','','',NULL,'9999');
851
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('830','r','Toneart [Mus]','Toneart [Mus]','0','0','0','8','','','','0','-1','','','',NULL,'9999');
852
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('830','s','Versjon (25.18A11)','Versjon (25.18A11)','0','0','0','8','','','','0','-1','','','',NULL,'9999');
853
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('830','v','Bind, nummer etc','Bind, nummer etc','0','0','0','8','','','','0','-1','','','',NULL,'9999');
854
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('830','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a','0','0','0','8','','','','0','-1','','','',NULL,'9999');
855
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('830','x','ISSN','ISSN','0','0','0','8','','','','0','-1','','','',NULL,'9999');
856
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('850','a','Eiende bibliotek/avdeling','Eiende bibliotek/avdeling','0','0','0','8','','','','0','-1','','','',NULL,'9999');
857
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('850','b','Filial-, avdelings- eller samlingskode','Filial-, avdelings- eller samlingskode','0','0','0','8','','','','0','-1','','','',NULL,'9999');
858
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('850','c','Hyllesignatur','Hyllesignatur','0','0','0','8','','','','0','-1','','','',NULL,'9999');
859
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('850','d','Utgivelsesår, copyrightår eller trykkeår (monografier)','Utgivelsesår, copyrightår eller trykkeår (monografier)','0','0','0','8','','','','0','-1','','','',NULL,'9999');
860
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('850','e','Antall eksemplarer','Antall eksemplarer','0','0','0','8','','','','0','-1','','','',NULL,'9999');
861
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('850','i','Første bind (volum/nummer) i biblioteket (periodika)','Første bind (volum/nummer) i biblioteket (periodika)','0','0','0','8','','','','0','-1','','','',NULL,'9999');
862
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('850','j','Parallell bindnummerering til første bind (periodika)','Parallell bindnummerering til første bind (periodika)','0','0','0','8','','','','0','-1','','','',NULL,'9999');
863
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('850','k','Første år i biblioteket (periodika)','Første år i biblioteket (periodika)','0','0','0','8','','','','0','-1','','','',NULL,'9999');
864
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('850','l','Siste bind (volum/nummer) i biblioteket (periodika)','Siste bind (volum/nummer) i biblioteket (periodika)','0','0','0','8','','','','0','-1','','','',NULL,'9999');
865
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('850','m','Parallell bindnummerering til siste bind (periodika)','Parallell bindnummerering til siste bind (periodika)','0','0','0','8','','','','0','-1','','','',NULL,'9999');
866
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('850','n','Siste år i biblioteket (periodika)','Siste år i biblioteket (periodika)','0','0','0','8','','','','0','-1','','','',NULL,'9999');
867
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('850','o','Note om begrenset oppbevaring','Note om begrenset oppbevaring','0','0','0','8','','','','0','-1','','','',NULL,'9999');
868
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('850','p','Angivelse av ufullstendighet (periodika)','Angivelse av ufullstendighet (periodika)','0','0','0','8','','','','0','-1','','','',NULL,'9999');
869
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('850','s','Status for beholdningsoppgaven','Status for beholdningsoppgaven','0','0','0','8','','','','0','-1','','','',NULL,'9999');
870
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('850','z','Lokal note','Lokal note','0','0','0','8','','','','0','-1','','','',NULL,'9999');
871
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('856','2','Tilgangsmetode','Tilgangsmetode','0','0','0','8','','','','0','-1','','','',NULL,'9999');
872
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('856','3','Dokumentspesifikasjon','Dokumentspesifikasjon','0','0','0','8','','','','0','-1','','','',NULL,'9999');
873
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('856','a','Vertsmaskinadresse (R)','Vertsmaskinadresse (R)','1','0','0','8','','','','0','-1','','','',NULL,'9999');
874
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('856','b','Tilgangsnummer for vertsmaskin','Tilgangsnummer for vertsmaskin','0','0','0','8','','','','0','-1','','','',NULL,'9999');
875
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('856','c','Komprimering (R)','Komprimering (R)','1','0','0','8','','','','0','-1','','','',NULL,'9999');
876
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('856','d','Filkatalog (R)','Filkatalog (R)','1','0','0','8','','','','0','-1','','','',NULL,'9999');
877
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('856','f','Filnavn (R)','Filnavn (R)','1','0','0','8','','','','0','-1','','','',NULL,'9999');
878
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('856','g','URN (Uniform Resource Name) (R)','URN (Uniform Resource Name) (R)','1','0','0','8','','','','0','-1','','','',NULL,'9999');
879
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('856','k','Passord','Passord','0','0','0','8','','','','0','-1','','','',NULL,'9999');
880
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('856','l','Innloggingsuttrykk','Innloggingsuttrykk','0','0','0','8','','','','0','-1','','','',NULL,'9999');
881
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('856','p','Portnummer','Portnummer','0','0','0','8','','','','0','-1','','','',NULL,'9999');
882
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('856','q','Elektronisk format','Elektronisk format','0','0','0','8','','','','0','-1','','','',NULL,'9999');
883
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('856','r','Kommunikasjonsoppsett','Kommunikasjonsoppsett','0','0','0','8','','','','0','-1','','','',NULL,'9999');
884
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('856','s','Filstørrelse (R)','Filstørrelse (R)','1','0','0','8','','','','0','-1','','','',NULL,'9999');
885
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('856','t','Terminalemulering (R)','Terminalemulering (R)','1','0','0','8','','','','0','-1','','','',NULL,'9999');
886
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('856','u','URL (Uniform Resource Locator) (R)','URL (Uniform Resource Locator) (R)','1','0','biblioitems.url','8','','','','0','-1','','','',NULL,'9999');
887
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('856','z','Note (R)','Note (R)','1','0','0','8','','','','0','-1','','','',NULL,'9999');
888
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('900','0','Kvalifikator til emneord (R)','Kvalifikator til emneord (R)','1','0','0','9','','','','0','-1','','','',NULL,'9999');
889
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('900','8','Andre karakteristika forbundet med navn (R)','Andre karakteristika forbundet med navn (R)','1','0','0','9','','','','0','-1','','','',NULL,'9999');
890
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('900','a','Navn, henvisning fra','Navn, henvisning fra','0','0','0','9','','','','0','-1','','','',NULL,'9999');
891
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('900','b','Nummer','Nummer','0','0','0','9','','','','0','-1','','','',NULL,'9999');
892
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('900','c','Andre tilføyelser','Andre tilføyelser','0','0','0','9','','','','0','-1','','','',NULL,'9999');
893
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('900','d','Ã…rstall forbundet med navn','Ã…rstall forbundet med navn','0','0','0','9','','','','0','-1','','','',NULL,'9999');
894
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('900','g','Diverse','Diverse','0','0','0','9','','','','0','-1','','','',NULL,'9999');
895
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('900','j','Nasjonalitet','Nasjonalitet','0','0','0','9','','','','0','-1','','','',NULL,'9999');
896
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('900','q','Mer fullstendig navneform','Mer fullstendig navneform','0','0','0','9','','','','0','-1','','','',NULL,'9999');
897
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('900','t','Tittel','Tittel','0','0','0','9','','','','0','-1','','','',NULL,'9999');
898
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('900','u','Sorteringsdelfelt for delfelt $t','Sorteringsdelfelt for delfelt $t','0','0','0','9','','','','0','-1','','','',NULL,'9999');
899
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('900','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a','0','0','0','9','','','','0','-1','','','',NULL,'9999');
900
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('900','x','Underavdeling til emneord (R)','Underavdeling til emneord (R)','1','0','0','9','','','','0','-1','','','',NULL,'9999');
901
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('900','z','Navn, henvisning til','Navn, henvisning til','0','0','0','9','','','','0','-1','','','',NULL,'9999');
902
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('910','0','Kvalifikator til emneord (R)','Kvalifikator til emneord (R)','1','0','0','9','','','','0','-1','','','',NULL,'9999');
903
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('910','a','Navn, henvisning fra','Navn, henvisning fra','0','0','0','9','','','','0','-1','','','',NULL,'9999');
904
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('910','b','Underavdeling','Underavdeling','0','0','0','9','','','','0','-1','','','',NULL,'9999');
905
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('910','c','Sted','Sted','0','0','0','9','','','','0','-1','','','',NULL,'9999');
906
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('910','d','Dato','Dato','0','0','0','9','','','','0','-1','','','',NULL,'9999');
907
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('910','g','Diverse','Diverse','0','0','0','9','','','','0','-1','','','',NULL,'9999');
908
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('910','n','Nummer for konferanse, utstilling etc','Nummer for konferanse, utstilling etc','0','0','0','9','','','','0','-1','','','',NULL,'9999');
909
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('910','q','Forklarende tilføyelse','Forklarende tilføyelse','0','0','0','9','','','','0','-1','','','',NULL,'9999');
910
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('910','t','Tittel','Tittel','0','0','0','9','','','','0','-1','','','',NULL,'9999');
911
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('910','u','Sorteringsdelfelt for delfelt $t','Sorteringsdelfelt for delfelt $t','0','0','0','9','','','','0','-1','','','',NULL,'9999');
912
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('910','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a','0','0','0','9','','','','0','-1','','','',NULL,'9999');
913
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('910','x','Underavdeling til emneord (R)','Underavdeling til emneord (R)','1','0','0','9','','','','0','-1','','','',NULL,'9999');
914
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('910','z','Navn, henvisning til','Navn, henvisning til','0','0','0','9','','','','0','-1','','','',NULL,'9999');
915
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('911','0','Kvalifikator til emneord','Kvalifikator til emneord','0','0','0','9','','','','0','-1','','','',NULL,'9999');
916
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('911','a','Navn, henvisning fra','Navn, henvisning fra','0','0','0','9','','','','0','-1','','','',NULL,'9999');
917
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('911','c','Sted','Sted','0','0','0','9','','','','0','-1','','','',NULL,'9999');
918
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('911','d','Dato','Dato','0','0','0','9','','','','0','-1','','','',NULL,'9999');
919
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('911','g','Diverse','Diverse','0','0','0','9','','','','0','-1','','','',NULL,'9999');
920
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('911','n','Nummer for konferanse, møte, utstilling etc','Nummer for konferanse, møte, utstilling etc','0','0','0','9','','','','0','-1','','','',NULL,'9999');
921
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('911','q','Forklarende tilføyelse','Forklarende tilføyelse','0','0','0','9','','','','0','-1','','','',NULL,'9999');
922
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('911','t','Tittel','Tittel','0','0','0','9','','','','0','-1','','','',NULL,'9999');
923
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('911','u','Sorteringsdelfelt for delfelt $t','Sorteringsdelfelt for delfelt $t','0','0','0','9','','','','0','-1','','','',NULL,'9999');
924
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('911','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a','0','0','0','9','','','','0','-1','','','',NULL,'9999');
925
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('911','x','Underavdeling til emneord','Underavdeling til emneord','0','0','0','9','','','','0','-1','','','',NULL,'9999');
926
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('911','z','Navn, henvisning til','Navn, henvisning til','0','0','0','9','','','','0','-1','','','',NULL,'9999');
927
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('930','0','Kvalifikator til emneord (R)','Kvalifikator til emneord (R)','1','0','0','9','','','','0','-1','','','',NULL,'9999');
928
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('930','a','Standardtittel, henvisning fra','Standardtittel, henvisning fra','0','0','0','9','','','','0','-1','','','',NULL,'9999');
929
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('930','b','Underordnet enhet','Underordnet enhet','0','0','0','9','','','','0','-1','','','',NULL,'9999');
930
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('930','d','Ã…rstall','Ã…rstall','0','0','0','9','','','','0','-1','','','',NULL,'9999');
931
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('930','f','Utgivelsesåret for verket som katalogiseres','Utgivelsesåret for verket som katalogiseres','0','0','0','9','','','','0','-1','','','',NULL,'9999');
932
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('930','g','Diverse','Diverse','0','0','0','9','','','','0','-1','','','',NULL,'9999');
933
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('930','i','Serienummer, opusnummer, nummer fra verkfortegnelse [Mus]','Serienummer, opusnummer, nummer fra verkfortegnelse [Mus]','0','0','0','9','','','','0','-1','','','',NULL,'9999');
934
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('930','k','Form','Form','0','0','0','9','','','','0','-1','','','',NULL,'9999');
935
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('930','l','Språk','Språk','0','0','0','9','','','','0','-1','','','',NULL,'9999');
936
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('930','m','Besetning [Mus]','Besetning [Mus]','0','0','0','9','','','','0','-1','','','',NULL,'9999');
937
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('930','n','Nummer for del av verk','Nummer for del av verk','0','0','0','9','','','','0','-1','','','',NULL,'9999');
938
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('930','o','Arrangement [Mus]','Arrangement [Mus]','0','0','0','9','','','','0','-1','','','',NULL,'9999');
939
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('930','p','Tittel for del av verk','Tittel for del av verk','0','0','0','9','','','','0','-1','','','',NULL,'9999');
940
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('930','q','Forklarende tilføyelse.','Forklarende tilføyelse.','0','0','0','9','','','','0','-1','','','',NULL,'9999');
941
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('930','r','Toneart [Mus]','Toneart [Mus]','0','0','0','9','','','','0','-1','','','',NULL,'9999');
942
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('930','s','Versjon','Versjon','0','0','0','9','','','','0','-1','','','',NULL,'9999');
943
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('930','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a','0','0','0','9','','','','0','-1','','','',NULL,'9999');
944
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('930','x','Underavdeling til emneord (R)','Underavdeling til emneord (R)','0','0','0','9','','','','0','-1','','','',NULL,'9999');
945
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('930','z','Standardtittel, henvisning til','Standardtittel, henvisning til','0','0','0','9','','','','0','-1','','','',NULL,'9999');
946
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('940','0','Kvalifikator til emneord (R)','Kvalifikator til emneord (R)','1','0','0','9','','','','0','-1','','','',NULL,'9999');
947
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('940','a','Tittel, henvisning fra','Tittel, henvisning fra','0','0','0','9','','','','0','-1','','','',NULL,'9999');
948
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('940','g','Diverse','Diverse','0','0','0','9','','','','0','-1','','','',NULL,'9999');
949
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('940','n','Nummer for del av verk','Nummer for del av verk','0','0','0','9','','','','0','-1','','','',NULL,'9999');
950
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('940','p','Tittel for del av verk','Tittel for del av verk','0','0','0','9','','','','0','-1','','','',NULL,'9999');
951
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('940','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a','0','0','0','9','','','','0','-1','','','',NULL,'9999');
952
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('940','x','Underavdeling til emneord (R)','Underavdeling til emneord (R)','1','0','0','9','','','','0','-1','','','',NULL,'9999');
953
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('940','z','Tittel, henvisning til','Tittel, henvisning til','0','0','0','9','','','','0','-1','','','',NULL,'9999');
954
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('942','0','Antall utlån, alle eksemplarer','Antall utlån, alle eksemplarer','0','0','biblioitems.totalissues','9','','','','0','-5','',NULL,'','','9999');
955
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('942','2','Kilde for klassifikasjon','Kilde for klassifikasjon','0','0','biblioitems.cn_source','9','','','','0','-1','',NULL,'','','9999');
956
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('942','6','Koha normalisert klassifikasjon for sortering','Koha normalisert klassifikasjon for sortering','0','0','biblioitems.cn_sort','-1','','','','0','7','',NULL,'','','9999');
957
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('942','a','Institusjonskode [utgått]','Institusjonskode [utgått]','0','0','','9','','','','0','-5','',NULL,'','','9999');
958
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('942','c','Koha [standard] dokumenttype','Koha dokumenttype','0','1','biblioitems.itemtype','9','itemtypes','','','0','-1','',NULL,'','','9999');
959
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('942','e','Utgave','Utgave','0','0','','9','','','','0','-1','',NULL,'','','9999');
960
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('942','h','Klassifikasjon del','Klassifikasjon del','0','0','biblioitems.cn_class','9','','','','0','-1','',NULL,'','','9999');
961
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('942','i','Eksemplar del','Eksemplar del','1','0','biblioitems.cn_item','9','','','','0','-1','',NULL,'','','9999');
962
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('942','k','Hyllesignatur prefiks','Hyllesignatur prefiks','0','0','','9','','','','0','-1','',NULL,'','','9999');
963
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('942','m','Hyllesignatur postfiks','Hyllesignatur postfiks','0','0','biblioitems.cn_suffix','9','','','','0','-1','',NULL,'','','9999');
964
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('942','n','Skjul i OPAC','Skjul i OPAC','0','0','','9','','','','0','-1','',NULL,'','','9999');
965
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('942','s','Periodikamarkør','Periodikamarkør','0','0','biblio.serial','9','','','','0','-5','',NULL,'','','9999');
966
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('950','0','Kvalifikator til emneord (R)','Kvalifikator til emneord (R)','1','0','0','9','','','','0','-1','','','',NULL,'9999');
967
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('950','a','Navn eller ord, henvisning fra','Navn eller ord, henvisning fra','0','0','0','9','','','','0','-1','','','',NULL,'9999');
968
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('950','g','Diverse','Diverse','0','0','0','9','','','','0','-1','','','',NULL,'9999');
969
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('950','q','Forklarende tilføyelser til delfelt $a','Forklarende tilføyelser til delfelt $a','0','0','0','9','','','','0','-1','','','',NULL,'9999');
970
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('950','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a.','0','0','0','9','','','','0','-1','','','',NULL,'9999');
971
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('950','x','Underavdeling til emneord (R)','Underavdeling til emneord (R)','1','0','0','9','','','','0','-1','','','',NULL,'9999');
972
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('950','z','Navn eller ord, henvisning til','Navn eller ord, henvisning til','0','0','0','9','','','','0','-1','','','',NULL,'9999');
973
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','0','Trukket tilbake','Trukket tilbake','0','0','items.withdrawn','10','WITHDRAWN','','','0','0','','','',NULL,'9999');
974
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','1','Tapt','Tapt','0','0','items.itemlost','10','LOST','','','0','0','','','',NULL,'9999');
975
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','2','Kilde for klassifikasjon','Kilde for klassifikasjon','0','0','items.cn_source','10','cn_source','','',NULL,'0','','','',NULL,'9999');
976
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','3','Materialespesifikasjon (innbundet årgang eller lignende)','Materialespesifikasjon (innbundet årgang eller lignende)','0','0','items.materials','10','','','',NULL,'0','','','',NULL,'9999');
977
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','4','Skadet','Skadet','0','0','items.damaged','10','DAMAGED','','',NULL,'0','','','',NULL,'9999');
978
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','5','Begrensninger på bruk','Begrensninger på bruk','0','0','items.restricted','10','RESTRICTED','','','0','0','','','',NULL,'9999');
979
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','6','Koha normalisert klassifikasjon for sortering','Koha normalisert klassifikasjon for sortering','0','0','items.cn_sort','-1','','','','0','7','','','',NULL,'9999');
980
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','7','Ikke til utlån','Ikke til utlån','0','0','items.notforloan','10','NOT_LOAN','','','0','0','','','',NULL,'9999');
981
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','8','Koha samling','Koha samling','0','0','items.ccode','10','CCODE','','','0','0','','','',NULL,'9999');
982
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','9','Koha eksemplarnummer (autogenerert)','Koha eksemplarnummer','0','0','items.itemnumber','-1','','','','0','7','','','',NULL,'9999');
983
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','a','Plassering (eiende filial)','Plassering (eiende filial)','0','0','items.homebranch','10','branches','','','0','0','','','',NULL,'9999');
984
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','b','Annen plassering (midlertidig filial)','Annen plassering (midlertidig filial)','0','0','items.holdingbranch','10','branches','','','0','0','','','',NULL,'9999');
985
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','c','Hylleplassering','Hylleplassering','0','0','items.location','10','LOC','','','0','0','','','',NULL,'9999');
986
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','d','Anskaffelsesdato','Anskaffelsesdato','0','0','items.dateaccessioned','10','','','dateaccessioned.pl','0','0','','','',NULL,'9999');
987
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','e','Kilde for anskaffelse','Kilde for anskaffelse','0','0','items.booksellerid','10','','','','0','0','','','',NULL,'9999');
988
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','f','Kodet plasseringskvalifikator','Kodet plasseringskvalifikator','0','0','items.coded_location_qualifier','10','','','',NULL,'0','','','',NULL,'9999');
989
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','g','Pris (normal innkjøpspris)','Pris (normal innkjøpspris)','0','0','items.price','10','','','','0','0','','','',NULL,'9999');
990
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','h','Serienummerering / kronologi','Serienummerering / kronologi','0','0','items.enumchron','10','','','','0','0','','','',NULL,'9999');
991
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','j','Samling','Samling','0','0','items.stack','10','STACK','','',NULL,'0','','','',NULL,'9999');
992
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','l','Koha utlån','Koha utlån','0','0','items.issues','10','','','',NULL,'-5','','','',NULL,'9999');
993
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','m','Koha fornyinger','Koha fornyinger','0','0','items.renewals','10','','','',NULL,'-5','','','',NULL,'9999');
994
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','n','Koha reserveringer','Koha reserveringer','0','0','items.reserves','10','','','',NULL,'-5','','','',NULL,'9999');
995
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','o','Koha hyllesignatur','Koha hyllesignatur','0','0','items.itemcallnumber','10','','',NULL,'0','0','','','',NULL,'9999');
996
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','p','Strekkode','Strekkode','0','0','items.barcode','10','','','barcode.pl','0','0','','','',NULL,'9999');
997
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','q','Koha utlånt','Koha utlånt','0','0','items.onloan','10','','','',NULL,'-5','','','',NULL,'9999');
998
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','r','Koha dato sist sett','Koha dato sist sett','0','0','items.datelastseen','10','','','',NULL,'-5','','','',NULL,'9999');
999
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','s','Koha dato sist utlånt','Koha dato sist utlånt','0','0','items.datelastborrowed','10','','','',NULL,'-5','','','',NULL,'9999');
1000
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','t','Eksemplarnummer','Eksemplarnummer','0','0','items.copynumber','10','','','',NULL,'0','','','',NULL,'9999');
1001
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','u','Uniform Resource Identifier (URI)','Uniform Resource Identifier (URI)','0','0','items.uri','10','','','','1','0','','','',NULL,'9999');
1002
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','v','Pris (erstatningspris)','Pris (erstatningspris)','0','0','items.replacementprice','10','','','','0','0','','','',NULL,'9999');
1003
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','w','Pris gjelder fra','Pris gjelder fra','0','0','items.replacementpricedate','10','','','','0','0','','','',NULL,'9999');
1004
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','x','Intern note','Intern note','1','0','items.itemnotes_nonpublic','10','','','',NULL,'7','','','',NULL,'9999');
1005
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','y','Koha dokumenttype','Koha dokumenttype','0','0','items.itype','10','itemtypes','','',NULL,'0','','','',NULL,'9999');
1006
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','z','Synlig note','Synlig note','0','0','items.itemnotes','10','','','',NULL,'0','','','',NULL,'9999');
1007
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('999','a','Dokumenttype [Ikke i bruk]','Dokumenttype [Ikke i bruk]','0','0',NULL,'-1',NULL,NULL,'',NULL,'-5','','','',NULL,'9999');
1008
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('999','b','Koha Dewey [Ikke i bruk]','Koha Dewey [Ikke i bruk]','0','0',NULL,'0',NULL,NULL,'',NULL,'-5','','','',NULL,'9999');
1009
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('999','c','Koha biblionummer','Koha biblionummer','0','0','biblio.biblionumber','-1',NULL,NULL,'',NULL,'-5','','','',NULL,'9999');
1010
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('999','d','Koha biblioitemnummer','Koha biblioitemnummer','0','0','biblioitems.biblioitemnumber','-1',NULL,NULL,'',NULL,'-5','','','',NULL,'9999');
1011
(-)a/installer/data/mysql/nb-NO/marcflavour/normarc/Obligatorisk/normarc.txt (-1 lines)
Line 1 Link Here
1
Komplett rammeverk for NORMARC. 
(-)a/installer/data/mysql/nb-NO/marcflavour/normarc/Valgfritt/normarc_fastadd_framework.sql (-127 lines)
Lines 1-127 Link Here
1
-- This file is part of Koha.
2
--
3
-- Copyright 2011 Magnus Enger Libriotech
4
--
5
-- Koha is free software; you can redistribute it and/or modify it
6
-- under the terms of the GNU General Public License as published by
7
-- the Free Software Foundation; either version 3 of the License, or
8
-- (at your option) any later version.
9
--
10
-- Koha is distributed in the hope that it will be useful, but
11
-- WITHOUT ANY WARRANTY; without even the implied warranty of
12
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
-- GNU General Public License for more details.
14
--
15
-- You should have received a copy of the GNU General Public License
16
-- along with Koha; if not, see <http://www.gnu.org/licenses>.
17
18
INSERT IGNORE INTO biblio_framework VALUES ( 'FA','Hurtigkatalogisering' );
19
20
DELETE FROM marc_tag_structure WHERE frameworkcode='FA';
21
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('000','Postens hode','Postens hode','0','1','','FA');
22
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('001','Identifikasjonsnummer','Identifikasjonsnummer','0','0','','FA');
23
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('008','Informasjonskoder','Informasjonskoder','0','0','','FA');
24
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('015','Andre bibliografiske kontrollnummer (R)','Andre bibliografiske kontrollnummer (R)','1','0','','FA');
25
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('020','Internasjonalt standard boknummer (ISBN)','Internasjonalt standard boknummer (ISBN)','1','0','','FA');
26
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('024','Andre standardnumre','Andre standardnumre','0','0','','FA');
27
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('025','Europeisk artikkelnummer (EAN)','Europeisk artikkelnummer (EAN)','0','0','','FA');
28
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('100','Hovedordningsord personnavn','Hovedordningsord personnavn','0','0','','FA');
29
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('245','Tittel og ansvarsopplysninger','Tittel og ansvarsopplysninger','0','0','','FA');
30
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('250','Utgave','Utgave','0','0','','FA');
31
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('260','Utgivelse, distribusjon osv','Utgivelse, distribusjon osv','0','0','','FA');
32
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('300','Fysisk beskrivelse','Fysisk beskrivelse','0','0','','FA');
33
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('500','Generell note (R)','Generell note (R)','1','0','','FA');
34
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('942','Andre opplysninger (Koha)','Andre opplysninger (Koha)','0','0','','FA');
35
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('952','Eksemplarinformasjon (Koha)','Eksemplarinformasjon (Koha)','1','0','','FA');
36
INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) VALUES ('999','Kontrollnummer (Koha)','Kontrollnummer (Koha)','1','0','','FA');
37
38
39
DELETE FROM marc_subfield_structure WHERE frameworkcode='FA';
40
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('000','@','Postens hode','Postens hode','0','1','','0','','','normarc_leader.pl','0','-1','FA','','','','24');
41
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('001','@','Identifikasjonsnummer','Identifikasjonsnummer','0','0','','0','','','','0','-1','FA','','','','9999');
42
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('008','@','Informasjonskoder','Informasjonskoder','0','0','','0','','','normarc_field_008.pl','0','-1','FA','','','','40');
43
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('015','a','Nummer','Nummer','0','0','0','0','','','','0','-1','FA','','','','9999');
44
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('015','b','Kilde','Kilde','0','0','0','0','','','','0','-1','FA','','','','9999');
45
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('020','a','ISBN','ISBN','0','0','biblioitems.isbn','0','','','','0','-1','FA','','','','9999');
46
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('020','b','Innbindingsinformasjon','Innbindingsinformasjon','0','0','0','0','','','','0','-1','FA','','','','9999');
47
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('020','c','Leveringsbetingelser','Leveringsbetingelser','0','0','0','0','','','','0','-1','FA','','','','9999');
48
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('020','g','Andre tilf','Andre tilf','0','0','0','0','','','','0','-1','FA','','','','9999');
49
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('020','z','Feil ISBN','Feil ISBN','0','0','0','0','','','','0','-1','FA','','','','9999');
50
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('024','a','Standardnummer','Standardnummer','0','0','0','0','','','','0','-1','FA','','','','9999');
51
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('024','c','Leveringsbetingelser','Leveringsbetingelser','0','0','0','0','','','','0','-1','FA','','','','9999');
52
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('024','g','Andre tilføyelser','Andre tilføyelser','0','0','0','0','','','','0','-1','FA','','','','9999');
53
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('024','z','Feil standardnummer','Feil standardnummer','0','0','0','0','','','','0','-1','FA','','','','9999');
54
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('025','a','Nummer','Nummer','0','0','0','0','','','','0','-1','FA','','','','9999');
55
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('100','8','Andre karakteristika forbundet med navn','Andre karakteristika forbundet med navn','0','0','0','1','','','','0','0','FA','','','','9999');
56
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('100','a','Navn','Navn','0','0','biblio.author','1','','','','0','0','FA','','','','9999');
57
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('100','b','Nummer','Nummer','0','0','0','1','','','','0','0','FA','','','','9999');
58
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('100','c','Andre tilføyelser','Andre tilføyelser','0','0','0','1','','','','0','0','FA','','','','9999');
59
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('100','d','Ã…rstall forbundet med navn','Ã…rstall forbundet med navn','0','0','0','1','','','','0','0','FA','','','','9999');
60
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('100','e','Betegnelse for funksjon','Betegnelse for funksjon','0','0','0','1','','','','0','0','FA','','','','9999');
61
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('100','j','Nasjonalitet','Nasjonalitet','0','0','0','1','','','','0','0','FA','','','','9999');
62
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('100','q','Mer fullstendig navneform','Mer fullstendig navneform','0','0','0','1','','','','0','0','FA','','','','9999');
63
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('100','w','Sorteringsdelfelt for delfelt $a','Sorteringsdelfelt for delfelt $a','0','0','0','1','','','','0','0','FA','','','','9999');
64
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('245','a','Tittel','Tittel','0','0','biblio.title','2','','','','0','0','FA','','','','9999');
65
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('245','b','Annen tittelinformasjon','Annen tittelinformasjon','0','0','biblio.subtitle','2','','','','0','0','FA','','','','9999');
66
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('245','c','Ansvarsangivelse','Ansvarsangivelse','0','0','0','2','','','','0','0','FA','','','','9999');
67
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('245','h','Generell materialbetegnelse','Generell materialbetegnelse','0','0','0','2','','','','0','0','FA','','','','9999');
68
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('250','a','Utgave, opplag etc','Utgave, opplag etc','0','0','biblioitems.editionstatement','2','','','','0','-1','FA','','','','9999');
69
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('250','b','Ansvarshavende','Ansvarshavende','0','0','0','2','','','','0','-1','FA','','','','9999');
70
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('260','a','Sted (R)','Sted (R)','1','0','biblioitems.place','2','','','','0','-1','FA','','','','9999');
71
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('260','b','Navn p','Navn p','0','0','biblioitems.publishercode','2','','','','0','-1','FA','','','','9999');
72
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('260','c','Ã…r','Ã…r','0','0','biblio.copyrightdate','2','','','','0','-1','FA','','','','9999');
73
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('260','e','Trykkested eller produksjonssted','Trykkested eller produksjonssted','0','0','0','2','','','','0','-1','FA','','','','9999');
74
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('260','f','Trykkeriets eller produsentens navn','Trykkeriets eller produsentens navn','0','0','0','2','','','','0','-1','FA','','','','9999');
75
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('260','g','Trykkeår eller produksjonsår','Trykkeår eller produksjonsår','0','0','0','2','','','','0','-1','FA','','','','9999');
76
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('300','a','Omfang','Omfang','0','0','biblioitems.pages','3','','','','0','0','FA','','','','9999');
77
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('300','b','Illustrasjonsmateriale og andre fysiske detaljer','Illustrasjonsmateriale og andre fysiske detaljer','0','0','biblioitems.illus','3','','','','0','0','FA','','','','9999');
78
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('300','c','Format','Format','0','0','biblioitems.size','3','','','','0','0','FA','','','','9999');
79
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('300','e','Bilag','Bilag','0','0','0','3','','','','0','0','FA','','','','9999');
80
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('500','a','Notens tekst','Notens tekst','0','0','biblio.notes','5','','','','0','0','FA','','','','9999');
81
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('942','0','Antall utlån','Antall utlån','0','0','biblioitems.totalissues','9','','','','0','-5','FA','','','','9999');
82
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('942','2','Kilde for klassifikasjon','Kilde for klassifikasjon','0','0','biblioitems.cn_source','9','','','','0','-1','FA','','','','9999');
83
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('942','6','Koha normalisert klassifikasjon for sortering','Koha normalisert klassifikasjon for sortering','0','0','biblioitems.cn_sort','-1','','','','0','7','FA','','','','9999');
84
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('942','c','Koha [standard] dokumenttype','Koha dokumenttype','0','1','biblioitems.itemtype','9','itemtypes','','','0','-1','FA','','','','9999');
85
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('942','e','Utgave','Utgave','0','0','','9','','','','0','-1','FA','','','','9999');
86
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('942','h','Klassifikasjon del','Klassifikasjon del','0','0','biblioitems.cn_class','9','','','','0','-1','FA','','','','9999');
87
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('942','i','Eksemplar del','Eksemplar del','1','0','biblioitems.cn_item','9','','','','0','-1','FA','','','','9999');
88
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('942','k','Hyllesignatur prefiks','Hyllesignatur prefiks','0','0','','9','','','','0','-1','FA','','','','9999');
89
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('942','m','Hyllesignatur postfiks','Hyllesignatur postfiks','0','0','biblioitems.cn_suffix','9','','','','0','-1','FA','','','','9999');
90
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('942','n','Skjul i OPAC','Skjul i OPAC','0','0','','9','','','','0','-1','FA','','','','9999');
91
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('942','s','Periodikamark','Periodikamark','0','0','biblio.serial','9','','','','0','-5','FA','','','','9999');
92
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','0','Trukket tilbake','Trukket tilbake','0','0','items.withdrawn','10','WITHDRAWN','','','0','0','FA','','','','9999');
93
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','1','Tapt','Tapt','0','0','items.itemlost','10','LOST','','','0','0','FA','','','','9999');
94
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','2','Kilde for klassifikasjon','Kilde for klassifikasjon','0','0','items.cn_source','10','cn_source','','','0','0','FA','','','','9999');
95
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','3','Materialespesifikasjon (innbundet ','Materialespesifikasjon (innbundet ','0','0','items.materials','10','','','','0','0','FA','','','','9999');
96
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','4','Skadet','Skadet','0','0','items.damaged','10','DAMAGED','','','0','0','FA','','','','9999');
97
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','5','Begrensninger p','Begrensninger p','0','0','items.restricted','10','RESTRICTED','','','0','0','FA','','','','9999');
98
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','6','Koha normalisert klassifikasjon for sortering','Koha normalisert klassifikasjon for sortering','0','0','items.cn_sort','-1','','','','0','7','FA','','','','9999');
99
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','7','Ikke til utlån','Ikke til utlån','0','0','items.notforloan','10','NOT_LOAN','','','0','0','FA','','','','9999');
100
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','8','Koha samling','Koha samling','0','0','items.ccode','10','CCODE','','','0','0','FA','','','','9999');
101
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','9','Koha eksemplarnummer (autogenerert)','Koha eksemplarnummer','0','0','items.itemnumber','-1','','','','0','7','FA','','','','9999');
102
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','a','Plassering (eiende filial)','Plassering (eiende filial)','0','0','items.homebranch','10','branches','','','0','0','FA','','','','9999');
103
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','b','Annen plassering (midlertidig filial)','Annen plassering (midlertidig filial)','0','0','items.holdingbranch','10','branches','','','0','0','FA','','','','9999');
104
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','c','Hylleplassering','Hylleplassering','0','0','items.location','10','LOC','','','0','0','FA','','','','9999');
105
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','d','Anskaffelsesdato','Anskaffelsesdato','0','0','items.dateaccessioned','10','','','dateaccessioned.pl','0','0','FA','','','','9999');
106
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','e','Kilde for anskaffelse','Kilde for anskaffelse','0','0','items.booksellerid','10','','','','0','0','FA','','','','9999');
107
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','f','Kodet plasseringskvalifikator','Kodet plasseringskvalifikator','0','0','items.coded_location_qualifier','10','','','','0','0','FA','','','','9999');
108
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','g','Pris (normal innkjøpspris)','Pris (normal innkjøpspris)','0','0','items.price','10','','','','0','0','FA','','','','9999');
109
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','h','Serienummerering / kronologi','Serienummerering / kronologi','0','0','items.enumchron','10','','','','0','0','FA','','','','9999');
110
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','j','Samling','Samling','0','0','items.stack','10','STACK','','','0','0','FA','','','','9999');
111
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','l','Koha utlån','Koha utlån','0','0','items.issues','10','','','','0','-5','FA','','','','9999');
112
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','m','Koha fornyinger','Koha fornyinger','0','0','items.renewals','10','','','','0','-5','FA','','','','9999');
113
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','n','Koha reserveringer','Koha reserveringer','0','0','items.reserves','10','','','','0','-5','FA','','','','9999');
114
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','o','Koha hyllesignatur','Koha hyllesignatur','0','0','items.itemcallnumber','10','','','','0','0','FA','','','','9999');
115
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','p','Strekkode','Strekkode','0','0','items.barcode','10','','','barcode.pl','0','0','FA','','','','9999');
116
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','q','Koha utlånt','Koha utlånt','0','0','items.onloan','10','','','','0','-5','FA','','','','9999');
117
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','r','Koha dato sist sett','Koha dato sist sett','0','0','items.datelastseen','10','','','','0','-5','FA','','','','9999');
118
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','s','Koha dato sist utlånt','Koha dato sist utlånt','0','0','items.datelastborrowed','10','','','','0','-5','FA','','','','9999');
119
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','t','Eksemplarnummer','Eksemplarnummer','0','0','items.copynumber','10','','','','0','0','FA','','','','9999');
120
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','u','Uniform Resource Identifier (URI)','Uniform Resource Identifier (URI)','0','0','items.uri','10','','','','1','0','FA','','','','9999');
121
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','v','Pris (erstatningspris)','Pris (erstatningspris)','0','0','items.replacementprice','10','','','','0','0','FA','','','','9999');
122
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','w','Pris gjelder fra','Pris gjelder fra','0','0','items.replacementpricedate','10','','','','0','0','FA','','','','9999');
123
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','x','Intern note','Intern note','1','0','items.itemnotes_nonpublic','10','','','','0','7','FA','','','','9999');
124
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','y','Koha dokumenttype','Koha dokumenttype','0','0','items.itype','10','itemtypes','','','0','0','FA','','','','9999');
125
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('952','z','Synlig note','Synlig note','0','0','items.itemnotes','10','','','','0','0','FA','','','','9999');
126
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('999','c','Koha biblionummer','Koha biblionummer','0','0','biblio.biblionumber','-1','','','','0','-5','FA','','','','9999');
127
INSERT INTO marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,isurl,hidden,frameworkcode,seealso,link,defaultvalue,maxlength) VALUES ('999','d','Koha biblioitemnummer','Koha biblioitemnummer','0','0','biblioitems.biblioitemnumber','-1','','','','0','-5','FA','','','','9999');
(-)a/installer/data/mysql/nb-NO/marcflavour/normarc/Valgfritt/normarc_fastadd_framework.txt (-1 lines)
Line 1 Link Here
1
Rammeverk for hurtigkatalogisering i NORMARC. Inneholder et begrenset utvalg felter.
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/cataloguing.pref (-2 / +1 lines)
Lines 26-32 Cataloging: Link Here
26
                  0: "Don't enable"
26
                  0: "Don't enable"
27
            - the advanced cataloging editor.
27
            - the advanced cataloging editor.
28
            - "<br/> <strong>NOTE:</strong>"
28
            - "<br/> <strong>NOTE:</strong>"
29
            - Currently does not include support for UNIMARC or NORMARC fixed fields.
29
            - Currently does not include support for UNIMARC fixed fields.
30
        -
30
        -
31
            - "When saving in a MARC/MARCXML file in the advanced cataloging editor or exporting from the detail page in the staff interface, use the"
31
            - "When saving in a MARC/MARCXML file in the advanced cataloging editor or exporting from the detail page in the staff interface, use the"
32
            - pref: DefaultSaveRecordFileID
32
            - pref: DefaultSaveRecordFileID
Lines 78-84 Cataloging: Link Here
78
              choices:
78
              choices:
79
                  MARC21: MARC21
79
                  MARC21: MARC21
80
                  UNIMARC: UNIMARC
80
                  UNIMARC: UNIMARC
81
                  NORMARC: NORMARC
82
            - format.
81
            - format.
83
        -
82
        -
84
            - Use the item type of the
83
            - Use the item type of the
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt (-2 / +2 lines)
Lines 829-835 function PopupMARCFieldDoc(field) { Link Here
829
                            [% IF Koha.Preference( 'EnableAdvancedCatalogingEditor' ) == 1 && CAN_user_editcatalogue_advanced_editor %]
829
                            [% IF Koha.Preference( 'EnableAdvancedCatalogingEditor' ) == 1 && CAN_user_editcatalogue_advanced_editor %]
830
                                <li><a href="#" id="switcheditor">Switch to advanced editor</a></li>
830
                                <li><a href="#" id="switcheditor">Switch to advanced editor</a></li>
831
                            [% END %]
831
                            [% END %]
832
                            [% IF marcflavour != 'NORMARC' AND NOT advancedMARCEditor %]
832
                            [% UNLESS advancedMARCEditor %]
833
                                <li>
833
                                <li>
834
                                    <a href="#" id="marcDocsSelect"><i class="fa fa-check-square-o"></i> Show MARC tag documentation links</a>
834
                                    <a href="#" id="marcDocsSelect"><i class="fa fa-check-square-o"></i> Show MARC tag documentation links</a>
835
                                <li>
835
                                <li>
Lines 966-972 function PopupMARCFieldDoc(field) { Link Here
966
                                                <a href="#" tabindex="1" class="tagnum" title="[% innerloo.tag_lib | html %] - Click to Expand this Tag" onclick="ExpandField('tag_[% innerloo.tag | html %]_[% innerloo.index | html %][% innerloo.random | html %]'); return false;">[% innerloo.tag | html %]</a>
966
                                                <a href="#" tabindex="1" class="tagnum" title="[% innerloo.tag_lib | html %] - Click to Expand this Tag" onclick="ExpandField('tag_[% innerloo.tag | html %]_[% innerloo.index | html %][% innerloo.random | html %]'); return false;">[% innerloo.tag | html %]</a>
967
                                            [% ELSE %]
967
                                            [% ELSE %]
968
                                                <span class="tagnum" title="[% innerloo.tag_lib | html %]">[% innerloo.tag | html %]</span>
968
                                                <span class="tagnum" title="[% innerloo.tag_lib | html %]">[% innerloo.tag | html %]</span>
969
                                                [% IF marcflavour != 'NORMARC' %]<a href="#" class="marcdocs" onclick="PopupMARCFieldDoc('[% innerloo.tag | html %]'); return false;">&nbsp;?</a>[% END %]
969
                                                <a href="#" class="marcdocs" onclick="PopupMARCFieldDoc('[% innerloo.tag | html %]'); return false;">&nbsp;?</a>
970
                                            [% END %]
970
                                            [% END %]
971
971
972
                                            [% IF ( innerloo.fixedfield ) %]
972
                                            [% IF ( innerloo.fixedfield ) %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/normarc_field_007.tt (-2826 lines)
Lines 1-2826 Link Here
1
[% INCLUDE 'doc-head-open.inc' %]
2
<title>007 feltbygger &rsaquo; Cataloging &rsaquo; Koha</title>
3
[% INCLUDE 'doc-head-close.inc' %]
4
</head>
5
<body id="cat_normarc_field_007" class="cat" style="padding:1em;" onload="RedrawChoices('[% f0 | html %]');">
6
<h3>007 Fysisk beskrivelse av dokumentet</h3>
7
<form id="f_pop" onsubmit="report()">
8
<input type="hidden" name="plugin_name" value="normarc_field_007.pl" />
9
10
<p><label for="MatTypeList">00 Type materiale: </label>
11
12
      <select name="MatTypeList" id="MatTypeList" onchange="RedrawChoices(this.options[selectedIndex].value);">
13
14
        [% IF ( f0a ) %]
15
	  <option value="a" selected="selected">a Kartografisk materiale (unntatt globus)</option>
16
        [% ELSE %]
17
	  <option value="a">a Kartografisk materiale (unntatt globus)</option>
18
        [% END %]
19
        [% IF ( f0c ) %]
20
	  <option value="c" selected="selected">c Maskinlesbar fil</option>
21
        [% ELSE %]
22
	  <option value="c">c Maskinlesbar fil</option>
23
        [% END %]
24
        [% IF ( f0d ) %]
25
	  <option value="d" selected="selected">d Globus</option>
26
        [% ELSE %]
27
	  <option value="d">d Globus</option>
28
        [% END %]
29
        [% IF ( f0g ) %]
30
	  <option value="g" selected="selected">g Grafisk materiale som er tenkt projisert eller gjennomlyst</option>
31
        [% ELSE %]
32
	  <option value="g">g Grafisk materiale som er tenkt projisert eller gjennomlyst</option>
33
        [% END %]
34
        [% IF ( f0h ) %]
35
	  <option value="h" selected="selected">h Mikroform </option>
36
        [% ELSE %]
37
	  <option value="h">h Mikroform </option>
38
        [% END %]
39
        [% IF ( f0k ) %]
40
	  <option value="k" selected="selected">k Grafisk materiale som er ugjennomtrengelig for lys</option>
41
        [% ELSE %]
42
	  <option value="k">k Grafisk materiale som er ugjennomtrengelig for lys</option>
43
        [% END %]
44
        [% IF ( f0m ) %]
45
	  <option value="m" selected="selected">m Film </option>
46
        [% ELSE %]
47
	  <option value="m">m Film </option>
48
        [% END %]
49
        [% IF ( f0s ) %]
50
	  <option value="s" selected="selected">s Lydopptak </option>
51
        [% ELSE %]
52
	  <option value="s">s Lydopptak </option>
53
        [% END %]
54
        [% IF ( f0u ) %]
55
	  <option value="u" selected="selected">u Tre-dimensjonal gjenstand</option>
56
        [% ELSE %]
57
	  <option value="u">u Tre-dimensjonal gjenstand</option>
58
        [% END %]
59
        [% IF ( f0v ) %]
60
	  <option value="v" selected="selected">v Videoopptak </option>
61
        [% ELSE %]
62
	  <option value="v">v Videoopptak </option>
63
        [% END %]
64
65
      </select></p>
66
67
<div id="choices">
68
</div>
69
70
<fieldset class="action"><input type="submit" value="OK" /> <a href="#" class="cancel close">Avbryt</a></fieldset>
71
</form>
72
<script>
73
//<![CDATA[
74
function report() {
75
            var doc   = opener.document; 
76
            var field = doc.getElementById("[% index | html %]");
77
            var tmpstr = document.getElementById("MatTypeList").value;
78
            var i=1;
79
            do{
80
             var entry='f'+ i.toString();
81
             if (document.getElementById(entry)){
82
               tmpstr += document.getElementById(entry).value;
83
               i++;
84
             }
85
             else{
86
               break;
87
             }
88
            }
89
            while (document.getElementById(entry));
90
            field.value = tmpstr;
91
		self.close();
92
		return false;
93
	}
94
95
function editER_fld6(val){
96
  var divOutput=document.getElementById("f6");
97
  divOutput.value=val;
98
}
99
100
function RedrawChoices(typ){
101
  var divOutput=document.getElementById("choices");
102
  switch(typ){
103
  case "a":
104
    divOutput.innerHTML='<table> \
105
                          <tr> \
106
                           <td>00 Type materiale</td> \
107
                           <td>a Kartografisk materiale (unntatt globus)</td> \
108
                          </tr> \
109
 	                  <tr> \
110
                           <td><label for="f1">01 Spesielle materialbetegnelser</label></td> \
111
                           <td> \
112
                            <select name="f1" id="f1"> \
113
                 [% IF ( f1a ) %] \
114
                              <option value="a" selected="selected">a Anamorfisk kart</option> \
115
                             [% ELSE %] \
116
                              <option value="a">a Anamorfisk kart</option> \
117
                             [% END %] \
118
                 [% IF ( f1b ) %] \
119
                              <option value="b" selected="selected">b Atlas</option> \
120
                             [% ELSE %] \
121
                              <option value="b">b Atlas</option> \
122
                             [% END %] \
123
                 [% IF ( f1c ) %] \
124
                              <option value="c" selected="selected">c Fantasikart</option> \
125
                             [% ELSE %] \
126
                              <option value="c">c Fantasikart</option> \
127
                             [% END %] \
128
                 [% IF ( f1d ) %] \
129
                              <option value="d" selected="selected">d Flykart</option> \
130
                             [% ELSE %] \
131
                              <option value="d">d Flykart</option> \
132
                             [% END %] \
133
                 [% IF ( f1e ) %] \
134
                              <option value="e" selected="selected">e Sjøkart</option> \
135
                             [% ELSE %] \
136
                              <option value="e">e Sjøkart</option> \
137
                             [% END %] \
138
                 [% IF ( f1f ) %] \
139
                              <option value="f" selected="selected">f Navigasjonskart</option> \
140
                             [% ELSE %] \
141
                              <option value="f">f Navigasjonskart</option> \
142
                             [% END %] \
143
                 [% IF ( f1g ) %] \
144
                              <option value="g" selected="selected">g Blokkdiagram</option> \
145
                             [% ELSE %] \
146
                              <option value="g">g Blokkdiagram</option> \
147
                             [% END %] \
148
                 [% IF ( f1h ) %] \
149
                              <option value="h" selected="selected">h Stjernekart</option> \
150
                             [% ELSE %] \
151
                              <option value="h">h Stjernekart</option> \
152
                             [% END %] \
153
                 [% IF ( f1j ) %] \
154
                              <option value="j" selected="selected">j Kart</option> \
155
                             [% ELSE %] \
156
                              <option value="j">j Kart</option> \
157
                             [% END %] \
158
                 [% IF ( f1k ) %] \
159
                              <option value="k" selected="selected">k Kartprofil</option> \
160
                             [% ELSE %] \
161
                              <option value="k">k Kartprofil</option> \
162
                             [% END %] \
163
                 [% IF ( f1l ) %] \
164
                              <option value="l" selected="selected">l Fotokart</option> \
165
                             [% ELSE %] \
166
                              <option value="l">l Fotokart</option> \
167
                             [% END %] \
168
                 [% IF ( f1m ) %] \
169
                              <option value="m" selected="selected">m Fotomosaikk</option> \
170
                             [% ELSE %] \
171
                              <option value="m">m Fotomosaikk</option> \
172
                             [% END %] \
173
                 [% IF ( f1n ) %] \
174
                              <option value="n" selected="selected">n Ortofoto</option> \
175
                             [% ELSE %] \
176
                              <option value="n">n Ortofoto</option> \
177
                             [% END %] \
178
                 [% IF ( f1o ) %] \
179
                              <option value="o" selected="selected">o Tegnet kart</option> \
180
                             [% ELSE %] \
181
                              <option value="o">o Tegnet kart</option> \
182
                             [% END %] \
183
                 [% IF ( f1p ) %] \
184
                              <option value="p" selected="selected">p Trykt kart</option> \
185
                             [% ELSE %] \
186
                              <option value="p">p Trykt kart</option> \
187
                             [% END %] \
188
                 [% IF ( f1q ) %] \
189
                              <option value="q" selected="selected">q Terrengmodell</option> \
190
                             [% ELSE %] \
191
                              <option value="q">q Terrengmodell</option> \
192
                             [% END %] \
193
                 [% IF ( f1r ) %] \
194
                              <option value="r" selected="selected">r Fjernanalysebilde</option> \
195
                             [% ELSE %] \
196
                              <option value="r">r Fjernanalysebilde</option> \
197
                             [% END %] \
198
                 [% IF ( f1s ) %] \
199
                              <option value="s" selected="selected">s Kartseksjon</option> \
200
                             [% ELSE %] \
201
                              <option value="s">s Kartseksjon</option> \
202
                             [% END %] \
203
                 [% IF ( f1t ) %] \
204
                              <option value="t" selected="selected">t Plan</option> \
205
                             [% ELSE %] \
206
                              <option value="t">t Plan</option> \
207
                             [% END %] \
208
                 [% IF ( f1y ) %] \
209
                              <option value="y" selected="selected">y Perspektivkart</option> \
210
                             [% ELSE %] \
211
                              <option value="y">y Perspektivkart</option> \
212
                             [% END %] \
213
                 [% IF ( f1z ) %] \
214
                              <option value="z" selected="selected">z Annen karttype </option> \
215
                             [% ELSE %] \
216
                              <option value="z">z Annen karttype </option> \
217
                             [% END %] \
218
                            </select> \
219
                           </td> \
220
                          </tr> \
221
 	                  <tr> \
222
                           <td><label for="f2">02 Udefinert</label></td> \
223
                           <td> \
224
                            <input type="hidden" name="f2" id="f2" size="1" value=" " /> \
225
                           </td> \
226
                          </tr> \
227
 	                  <tr> \
228
                           <td><label for="f3">03 Farge</label></td> \
229
                           <td> \
230
                            <select name="f3" id="f3"> \
231
                 [% IF ( f3 ) %] \
232
                              <option value=" " selected="selected">^ Ikke angitt</option> \
233
                             [% ELSE %] \
234
                              <option value=" ">^ Ikke angitt</option> \
235
                             [% END %] \
236
			     [% IF ( f3a ) %] \
237
                              <option value="a" selected="selected">a En-farget</option> \
238
                             [% ELSE %] \
239
                              <option value="a">a En-farget</option> \
240
                             [% END %] \
241
			     [% IF ( f3c ) %] \
242
                              <option value="c" selected="selected">c Farger</option> \
243
                             [% ELSE %] \
244
                              <option value="c">c Farger</option> \
245
                             [% END %] \
246
                            </select> \
247
                           </td> \
248
                          </tr> \
249
 	                  <tr> \
250
                           <td><label for="f4">04 Fysisk materiale</label></td> \
251
                           <td> \
252
                            <select name="f4" id="f4"> \
253
	[% IF ( f4 ) %] \
254
		<option value=" " selected="selected">^ Ikke angitt</option> \
255
		[% ELSE %] \
256
		<option value=" ">^ Ikke angitt</option> \
257
		[% END %] \
258
	[% IF ( f4a ) %] \
259
		<option value="a" selected="selected">a Papir</option> \
260
		[% ELSE %] \
261
		<option value="a">a Papir</option> \
262
		[% END %] \
263
	[% IF ( f4b ) %] \
264
		<option value="b" selected="selected">b Tre</option> \
265
		[% ELSE %] \
266
		<option value="b">b Tre</option> \
267
		[% END %] \
268
	[% IF ( f4c ) %] \
269
		<option value="c" selected="selected">c Stein</option> \
270
		[% ELSE %] \
271
		<option value="c">c Stein</option> \
272
		[% END %] \
273
	[% IF ( f4d ) %] \
274
		<option value="d" selected="selected">d Metall</option> \
275
		[% ELSE %] \
276
		<option value="d">d Metall</option> \
277
		[% END %] \
278
	[% IF ( f4e ) %] \
279
		<option value="e" selected="selected">e Syntetisk</option> \
280
		[% ELSE %] \
281
		<option value="e">e Syntetisk</option> \
282
		[% END %] \
283
	[% IF ( f4f ) %] \
284
		<option value="f" selected="selected">f Hud</option> \
285
		[% ELSE %] \
286
		<option value="f">f Hud</option> \
287
		[% END %] \
288
	[% IF ( f4g ) %] \
289
		<option value="g" selected="selected">g Tekstil</option> \
290
		[% ELSE %] \
291
		<option value="g">g Tekstil</option> \
292
		[% END %] \
293
	[% IF ( f4p ) %] \
294
		<option value="p" selected="selected">p Gips</option> \
295
		[% ELSE %] \
296
		<option value="p">p Gips</option> \
297
		[% END %] \
298
	[% IF ( f4u ) %] \
299
		<option value="u" selected="selected">u Ukjent</option> \
300
		[% ELSE %] \
301
		<option value="u">u Ukjent</option> \
302
		[% END %] \
303
	[% IF ( f4z ) %] \
304
		<option value="z" selected="selected">z Annet</option> \
305
		[% ELSE %] \
306
		<option value="z">z Annet</option> \
307
		[% END %] \
308
                            </select> \
309
                           </td> \
310
                          </tr> \
311
 	                  <tr> \
312
                           <td><label for="f5">05 Reproduksjonstype</label></td> \
313
                           <td> \
314
                            <select name="f5" id="f5"> \
315
	[% IF ( f5f ) %] \
316
		<option value="f" selected="selected">f Faksimile</option> \
317
		[% ELSE %] \
318
		<option value="f">f Faksimile</option> \
319
		[% END %] \
320
	[% IF ( f5n ) %] \
321
		<option value="n" selected="selected">n Kode for reproduksjonstype ikke relevant</option> \
322
		[% ELSE %] \
323
		<option value="n">n Kode for reproduksjonstype ikke relevant</option> \
324
		[% END %] \
325
	[% IF ( f5u ) %] \
326
		<option value="u" selected="selected">u Ukjent</option> \
327
		[% ELSE %] \
328
		<option value="u">u Ukjent</option> \
329
		[% END %] \
330
	[% IF ( f5z ) %] \
331
		<option value="z" selected="selected">z Annen reproduksjonstype</option> \
332
		[% ELSE %] \
333
		<option value="z">z Annen reproduksjonstype</option> \
334
		[% END %] \
335
                            </select> \
336
                           </td> \
337
                          </tr> \
338
 	                  <tr> \
339
                           <td><label for="f6">06 Produksjons- / reproduksjonsdetaljer</label></td> \
340
                           <td> \
341
                            <select name="f6" id="f6"> \
342
	[% IF ( f6a ) %] \
343
		<option value="a" selected="selected">a Blåkopi</option> \
344
		[% ELSE %] \
345
		<option value="a">a Blåkopi</option> \
346
		[% END %] \
347
	[% IF ( f6b ) %] \
348
		<option value="b" selected="selected">b Fotokopi</option> \
349
		[% ELSE %] \
350
		<option value="b">b Fotokopi</option> \
351
		[% END %] \
352
	[% IF ( f6d ) %] \
353
		<option value="d" selected="selected">d Filmkopi</option> \
354
		[% ELSE %] \
355
		<option value="d">d Filmkopi</option> \
356
		[% END %] \
357
	[% IF ( f6u ) %] \
358
		<option value="u" selected="selected">u Ukjent</option> \
359
		[% ELSE %] \
360
		<option value="u">u Ukjent</option> \
361
		[% END %] \
362
	[% IF ( f6z ) %] \
363
		<option value="z" selected="selected">z Andre produksjons-/reproduksjonsdetaljer</option> \
364
		[% ELSE %] \
365
		<option value="z">z Andre produksjons-/reproduksjonsdetaljer</option> \
366
		[% END %] \
367
                            </select> \
368
                           </td> \
369
                          </tr> \
370
 	                  <tr> \
371
                           <td><label for="f7">07 Positiv/negativ</label></td> \
372
                           <td> \
373
                            <select name="f7" id="f7"> \
374
	[% IF ( f7a ) %] \
375
		<option value="a" selected="selected">a Positiv</option> \
376
		[% ELSE %] \
377
		<option value="a">a Positiv</option> \
378
		[% END %] \
379
	[% IF ( f7b ) %] \
380
		<option value="b" selected="selected">b Negativ</option> \
381
		[% ELSE %] \
382
		<option value="b">b Negativ</option> \
383
		[% END %] \
384
	[% IF ( f7m ) %] \
385
		<option value="m" selected="selected">m Blandet polaritet</option> \
386
		[% ELSE %] \
387
		<option value="m">m Blandet polaritet</option> \
388
		[% END %] \
389
	[% IF ( f7n ) %] \
390
		<option value="n" selected="selected">n Kode for positiv/negativ ikke relevant</option> \
391
		[% ELSE %] \
392
		<option value="n">n Kode for positiv/negativ ikke relevant</option> \
393
		[% END %] \
394
                            </select> \
395
                           </td> \
396
                          </tr> \
397
                        </table>';  
398
    break;
399
  case "c":
400
    divOutput.innerHTML='<table> \
401
                          <tr> \
402
                           <td>00 Type materiale</td> \
403
                           <td>c Maskinlesbar fil</td> \
404
	                  </tr> \
405
	                  <tr> \
406
                           <td><label for="f1">01 Spesielle materialbetegnelser</label></td> \
407
                           <td> \
408
                            <select id="f1" name="f1"> \
409
	[% IF ( f1a ) %] \
410
		<option value="a" selected="selected">a Magnetisk-optisk plate</option> \
411
		[% ELSE %] \
412
		<option value="a">a Magnetisk-optisk plate</option> \
413
		[% END %] \
414
	[% IF ( f1b ) %] \
415
		<option value="b" selected="selected">b Lagringsbrikke</option> \
416
		[% ELSE %] \
417
		<option value="b">b Lagringsbrikke</option> \
418
		[% END %] \
419
	[% IF ( f1c ) %] \
420
		<option value="c" selected="selected">c Optisk kassett</option> \
421
		[% ELSE %] \
422
		<option value="c">c Optisk kassett</option> \
423
		[% END %] \
424
	[% IF ( f1d ) %] \
425
		<option value="d" selected="selected">d Diskett</option> \
426
		[% ELSE %] \
427
		<option value="d">d Diskett</option> \
428
		[% END %] \
429
	[% IF ( f1h ) %] \
430
		<option value="h" selected="selected">h Platelager (harddisk)</option> \
431
		[% ELSE %] \
432
		<option value="h">h Platelager (harddisk)</option> \
433
		[% END %] \
434
	[% IF ( f1k ) %] \
435
		<option value="k" selected="selected">k Magnetbåndkassett</option> \
436
		[% ELSE %] \
437
		<option value="k">k Magnetbåndkassett</option> \
438
		[% END %] \
439
	[% IF ( f1m ) %] \
440
		<option value="m" selected="selected">m Magnetbåndspole</option> \
441
		[% ELSE %] \
442
		<option value="m">m Magnetbåndspole</option> \
443
		[% END %] \
444
	[% IF ( f1n ) %] \
445
		<option value="n" selected="selected">n Fjerntilgang (online)</option> \
446
		[% ELSE %] \
447
		<option value="n">n Fjerntilgang (online)</option> \
448
		[% END %] \
449
	[% IF ( f1o ) %] \
450
		<option value="o" selected="selected">o Optisk plate</option> \
451
		[% ELSE %] \
452
		<option value="o">o Optisk plate</option> \
453
		[% END %] \
454
	[% IF ( f1z ) %] \
455
		<option value="z" selected="selected">z Annet lagringsmedium</option> \
456
		[% ELSE %] \
457
		<option value="z">z Annet lagringsmedium</option> \
458
		[% END %] \
459
                            </select> \
460
                           </td> \
461
                          </tr> \
462
                          </table>';
463
    break;
464
  case "d":
465
    divOutput.innerHTML='<table> \
466
                          <tr> \
467
                           <td>00 Type materiale</td> \
468
                           <td>d Globus</td> \
469
                          </tr> \
470
 	                  <tr> \
471
                           <td><label for="f1">01 Spesielle materialbetegnelser</label></td> \
472
                           <td> \
473
                            <select name="f1" id="f1"> \
474
	[% IF ( f1a ) %] \
475
		<option value="a" selected="selected">a Stjerneglobus</option> \
476
		[% ELSE %] \
477
		<option value="a">a Stjerneglobus</option> \
478
		[% END %] \
479
	[% IF ( f1b ) %] \
480
		<option value="b" selected="selected">b Planet- eller måneglobus</option> \
481
		[% ELSE %] \
482
		<option value="b">b Planet- eller måneglobus</option> \
483
		[% END %] \
484
	[% IF ( f1c ) %] \
485
		<option value="c" selected="selected">c Jordglobus</option> \
486
		[% ELSE %] \
487
		<option value="c">c Jordglobus</option> \
488
		[% END %] \
489
	[% IF ( f1z ) %] \
490
		<option value="z" selected="selected">z Annen globustype</option> \
491
		[% ELSE %] \
492
		<option value="z">z Annen globustype</option> \
493
		[% END %] \
494
                            </select> \
495
                           </td> \
496
                          </tr> \
497
 	                  <tr> \
498
                           <td><label for="f2">02 Udefinert</label></td> \
499
                           <td> \
500
                            <input type="hidden" name="f2" id="f2" size="1" value=" " /> \
501
                           </td> \
502
                          </tr> \
503
 	                  <tr> \
504
                           <td><label for="f3">03 Farge</label></td> \
505
                           <td> \
506
                            <select name="f3" id="f3"> \
507
	[% IF ( f3a ) %] \
508
		<option value="a" selected="selected">a En-farget</option> \
509
		[% ELSE %] \
510
		<option value="a">a En-farget</option> \
511
		[% END %] \
512
	[% IF ( f3c ) %] \
513
		<option value="c" selected="selected">c Farger</option> \
514
		[% ELSE %] \
515
		<option value="c">c Farger</option> \
516
		[% END %] \
517
                            </select> \
518
                           </td> \
519
                          </tr> \
520
 	                  <tr> \
521
                           <td><label for="f4">04 Fysisk materiale</label></td> \
522
                           <td> \
523
                            <select name="f4" id="f4"> \
524
 	[% IF ( f4a ) %] \
525
		<option value="a" selected="selected">a Papir</option> \
526
		[% ELSE %] \
527
		<option value="a">a Papir</option> \
528
		[% END %] \
529
	[% IF ( f4b ) %] \
530
		<option value="b" selected="selected">b Tre</option> \
531
		[% ELSE %] \
532
		<option value="b">b Tre</option> \
533
		[% END %] \
534
	[% IF ( f4c ) %] \
535
		<option value="c" selected="selected">c Stein</option> \
536
		[% ELSE %] \
537
		<option value="c">c Stein</option> \
538
		[% END %] \
539
	[% IF ( f4d ) %] \
540
		<option value="d" selected="selected">d Metall</option> \
541
		[% ELSE %] \
542
		<option value="d">d Metall</option> \
543
		[% END %] \
544
	[% IF ( f4e ) %] \
545
		<option value="e" selected="selected">e Syntetisk</option> \
546
		[% ELSE %] \
547
		<option value="e">e Syntetisk</option> \
548
		[% END %] \
549
	[% IF ( f4f ) %] \
550
		<option value="f" selected="selected">f Hud</option> \
551
		[% ELSE %] \
552
		<option value="f">f Hud</option> \
553
		[% END %] \
554
	[% IF ( f4g ) %] \
555
		<option value="g" selected="selected">g Tekstil</option> \
556
		[% ELSE %] \
557
		<option value="g">g Tekstil</option> \
558
		[% END %] \
559
	[% IF ( f4p ) %] \
560
		<option value="p" selected="selected">p Gips</option> \
561
		[% ELSE %] \
562
		<option value="p">p Gips</option> \
563
		[% END %] \
564
	[% IF ( f4u ) %] \
565
		<option value="u" selected="selected">u Ukjent</option> \
566
		[% ELSE %] \
567
		<option value="u">u Ukjent</option> \
568
		[% END %] \
569
	[% IF ( f4z ) %] \
570
		<option value="z" selected="selected">z Annet</option> \
571
		[% ELSE %] \
572
		<option value="z">z Annet</option> \
573
		[% END %] \
574
                            </select> \
575
                           </td> \
576
                          </tr> \
577
 	                  <tr> \
578
                           <td><label for="f5">05 Reproduksjonstype</label></td> \
579
                           <td> \
580
                            <select name="f5" id="f5"> \
581
	[% IF ( f5f ) %] \
582
		<option value="f" selected="selected">f Faksimile</option> \
583
		[% ELSE %] \
584
		<option value="f">f Faksimile</option> \
585
		[% END %] \
586
	[% IF ( f5n ) %] \
587
		<option value="n" selected="selected">n Kode for reproduksjonstype ikke relevant</option> \
588
		[% ELSE %] \
589
		<option value="n">n Kode for reproduksjonstype ikke relevant</option> \
590
		[% END %] \
591
	[% IF ( f5u ) %] \
592
		<option value="u" selected="selected">u Ukjent</option> \
593
		[% ELSE %] \
594
		<option value="u">u Ukjent</option> \
595
		[% END %] \
596
	[% IF ( f5z ) %] \
597
		<option value="z" selected="selected">z Annen reproduksjonstype</option> \
598
		[% ELSE %] \
599
		<option value="z">z Annen reproduksjonstype</option> \
600
		[% END %] \
601
                            </select> \
602
                           </td> \
603
                          </tr> \
604
                        </table>';  
605
    break;
606
  case "g":
607
    divOutput.innerHTML='<table> \
608
                          <tr> \
609
                           <td>00 Spesielle materialbetegnelser</td> \
610
                           <td>g- Grafisk materiale som er tenkt projisert eller gjennomlyst</td> \
611
                          </tr> \
612
 	                  <tr> \
613
                           <td><label for="f1">01 Specific material designation</label></td> \
614
                           <td> \
615
                            <select name="f1" id="f1"> \
616
	[% IF ( f1 ) %] \
617
		<option value=" " selected="selected">^ Ikke angitt</option> \
618
		[% ELSE %] \
619
		<option value=" ">^ Ikke angitt</option> \
620
		[% END %] \
621
	[% IF ( f1h ) %] \
622
		<option value="h" selected="selected">h Hologram</option> \
623
		[% ELSE %] \
624
		<option value="h">h Hologram</option> \
625
		[% END %] \
626
	[% IF ( f1o ) %] \
627
		<option value="o" selected="selected">o Billedbånd</option> \
628
		[% ELSE %] \
629
		<option value="o">o Billedbånd</option> \
630
		[% END %] \
631
	[% IF ( f1p ) %] \
632
		<option value="p" selected="selected">p Stereobilde</option> \
633
		[% ELSE %] \
634
		<option value="p">p Stereobilde</option> \
635
		[% END %] \
636
	[% IF ( f1r ) %] \
637
		<option value="r" selected="selected">r Røntgenbilde</option> \
638
		[% ELSE %] \
639
		<option value="r">r Røntgenbilde</option> \
640
		[% END %] \
641
	[% IF ( f1s ) %] \
642
		<option value="s" selected="selected">s Dia</option> \
643
		[% ELSE %] \
644
		<option value="s">s Dia</option> \
645
		[% END %] \
646
	[% IF ( f1t ) %] \
647
		<option value="t" selected="selected">t Transparent</option> \
648
		[% ELSE %] \
649
		<option value="t">t Transparent</option> \
650
		[% END %] \
651
	[% IF ( f1z ) %] \
652
		<option value="z" selected="selected">z Annen materialtype</option> \
653
		[% ELSE %] \
654
		<option value="z">z Annen materialtype</option> \
655
		[% END %] \
656
                            </select> \
657
                           </td> \
658
                          </tr> \
659
 	                  <tr> \
660
                           <td><label for="f2">02 Udefinert</label></td> \
661
                           <td> \
662
                            <input type="hidden" name="f2" id="f2" size="1" value=" " /> \
663
                           </td> \
664
                          </tr> \
665
 	                  <tr> \
666
                           <td><label for="f3">03 Farge</label></td> \
667
                           <td> \
668
                            <select name="f3" id="f3"> \
669
 	[% IF ( f3 ) %] \
670
		<option value=" " selected="selected">^ Ikke angitt</option> \
671
		[% ELSE %] \
672
		<option value=" ">^ Ikke angitt</option> \
673
		[% END %] \
674
	[% IF ( f3a ) %] \
675
		<option value="a" selected="selected">a En-farget</option> \
676
		[% ELSE %] \
677
		<option value="a">a En-farget</option> \
678
		[% END %] \
679
	[% IF ( f3b ) %] \
680
		<option value="b" selected="selected">b Svart-hvitt</option> \
681
		[% ELSE %] \
682
		<option value="b">b Svart-hvitt</option> \
683
		[% END %] \
684
	[% IF ( f3c ) %] \
685
		<option value="c" selected="selected">c Farger</option> \
686
		[% ELSE %] \
687
		<option value="c">c Farger</option> \
688
		[% END %] \
689
	[% IF ( f3h ) %] \
690
		<option value="h" selected="selected">h HÃ¥ndkolorert</option> \
691
		[% ELSE %] \
692
		<option value="h">h HÃ¥ndkolorert</option> \
693
		[% END %] \
694
	[% IF ( f3m ) %] \
695
		<option value="m" selected="selected">m Blandet</option> \
696
		[% ELSE %] \
697
		<option value="m">m Blandet</option> \
698
		[% END %] \
699
	[% IF ( f3n ) %] \
700
		<option value="n" selected="selected">n Kode for farge ikke relevant</option> \
701
		[% ELSE %] \
702
		<option value="n">n Kode for farge ikke relevant</option> \
703
		[% END %] \
704
	[% IF ( f3u ) %] \
705
		<option value="u" selected="selected">u Ukjent</option> \
706
		[% ELSE %] \
707
		<option value="u">u Ukjent</option> \
708
		[% END %] \
709
	[% IF ( f3z ) %] \
710
		<option value="z" selected="selected">z Annet</option> \
711
		[% ELSE %] \
712
		<option value="z">z Annet</option> \
713
		[% END %] \
714
                            </select> \
715
                           </td> \
716
                          </tr> \
717
 	                  <tr> \
718
                           <td><label for="f4">04 Emulsjonsbasis</label></td> \
719
                           <td> \
720
                            <select name="f4" id="f4"> \
721
	[% IF ( f4 ) %] \
722
		<option value=" " selected="selected">^ Ikke angitt</option> \
723
		[% ELSE %] \
724
		<option value=" ">^ Ikke angitt</option> \
725
		[% END %] \
726
	[% IF ( f4d ) %] \
727
		<option value="d" selected="selected">d Glass</option> \
728
		[% ELSE %] \
729
		<option value="d">d Glass</option> \
730
		[% END %] \
731
	[% IF ( f4e ) %] \
732
		<option value="e" selected="selected">e Syntetisk</option> \
733
		[% ELSE %] \
734
		<option value="e">e Syntetisk</option> \
735
		[% END %] \
736
	[% IF ( f4j ) %] \
737
		<option value="j" selected="selected">j Sikkerhetsfilm</option> \
738
		[% ELSE %] \
739
		<option value="j">j Sikkerhetsfilm</option> \
740
		[% END %] \
741
	[% IF ( f4k ) %] \
742
		<option value="k" selected="selected">k Ikke sikkerhetsfilm</option> \
743
		[% ELSE %] \
744
		<option value="k">k Ikke sikkerhetsfilm</option> \
745
		[% END %] \
746
	[% IF ( f4m ) %] \
747
		<option value="m" selected="selected">m Blandet</option> \
748
		[% ELSE %] \
749
		<option value="m">m Blandet</option> \
750
		[% END %] \
751
	[% IF ( f4o ) %] \
752
		<option value="o" selected="selected">o Papir</option> \
753
		[% ELSE %] \
754
		<option value="o">o Papir</option> \
755
		[% END %] \
756
	[% IF ( f4u ) %] \
757
		<option value="u" selected="selected">u Ukjent</option> \
758
		[% ELSE %] \
759
		<option value="u">u Ukjent</option> \
760
		[% END %] \
761
	[% IF ( f4z ) %] \
762
		<option value="z" selected="selected">z Annet</option> \
763
		[% ELSE %] \
764
		<option value="z">z Annet</option> \
765
		[% END %] \
766
                            </select> \
767
                           </td> \
768
                          </tr> \
769
 	                  <tr> \
770
                           <td><label for="f5">05 Lyd på materialet eller separat</label></td> \
771
                           <td> \
772
                            <select name="f5" id="f5"> \
773
	[% IF ( f5 ) %] \
774
		<option value=" " selected="selected">^ Ikke angitt</option> \
775
		[% ELSE %] \
776
		<option value=" ">^ Ikke angitt</option> \
777
		[% END %] \
778
	[% IF ( f5a ) %] \
779
		<option value="a" selected="selected">a Lyd på materialet</option> \
780
		[% ELSE %] \
781
		<option value="a">a Lyd på materialet</option> \
782
		[% END %] \
783
	[% IF ( f5b ) %] \
784
		<option value="b" selected="selected">b Lyd på separat materiale</option> \
785
		[% ELSE %] \
786
		<option value="b">b Lyd på separat materiale</option> \
787
		[% END %] \
788
	[% IF ( f5i ) %] \
789
		<option value="i" selected="selected">i Ingen lyd</option> \
790
		[% ELSE %] \
791
		<option value="i">i Ingen lyd</option> \
792
		[% END %] \
793
	[% IF ( f5u ) %] \
794
		<option value="u" selected="selected">u Ukjent</option> \
795
		[% ELSE %] \
796
		<option value="u">u Ukjent</option> \
797
		[% END %] \
798
                            </select> \
799
                           </td> \
800
                          </tr> \
801
 	                  <tr> \
802
                           <td><label for="f6">06 Lydmateriale</label></td> \
803
                           <td> \
804
                            <select name="f6" id="f6"> \
805
	[% IF ( f6 ) %] \
806
		<option value=" " selected="selected">^ Ikke angitt</option> \
807
		[% ELSE %] \
808
		<option value=" ">^ Ikke angitt</option> \
809
		[% END %] \
810
	[% IF ( f6a ) %] \
811
		<option value="a" selected="selected">a Optisk lydspor på film</option> \
812
		[% ELSE %] \
813
		<option value="a">a Optisk lydspor på film</option> \
814
		[% END %] \
815
	[% IF ( f6b ) %] \
816
		<option value="b" selected="selected">b Magnetisk lydspor på film</option> \
817
		[% ELSE %] \
818
		<option value="b">b Magnetisk lydspor på film</option> \
819
		[% END %] \
820
	[% IF ( f6d ) %] \
821
		<option value="d" selected="selected">d Lydplate (grammofon- eller kompaktplate)</option> \
822
		[% ELSE %] \
823
		<option value="d">d Lydplate (grammofon- eller kompaktplate)</option> \
824
		[% END %] \
825
	[% IF ( f6e ) %] \
826
		<option value="e" selected="selected">e Magnetisk lydbånd på spole</option> \
827
		[% ELSE %] \
828
		<option value="e">e Magnetisk lydbånd på spole</option> \
829
		[% END %] \
830
	[% IF ( f6f ) %] \
831
		<option value="f" selected="selected">f Magnetisk lydbånd i kassett</option> \
832
		[% ELSE %] \
833
		<option value="f">f Magnetisk lydbånd i kassett</option> \
834
		[% END %] \
835
	[% IF ( f6g ) %] \
836
		<option value="g" selected="selected">g Både optisk og magnetisk lydspor på film</option> \
837
		[% ELSE %] \
838
		<option value="g">g Både optisk og magnetisk lydspor på film</option> \
839
		[% END %] \
840
	[% IF ( f6s ) %] \
841
		<option value="s" selected="selected">s Ingen lyd</option> \
842
		[% ELSE %] \
843
		<option value="s">s Ingen lyd</option> \
844
		[% END %] \
845
	[% IF ( f6u ) %] \
846
		<option value="u" selected="selected">u Ukjent</option> \
847
		[% ELSE %] \
848
		<option value="u">u Ukjent</option> \
849
		[% END %] \
850
	[% IF ( f6z ) %] \
851
		<option value="z" selected="selected">z Annet lydmateriale</option> \
852
		[% ELSE %] \
853
		<option value="z">z Annet lydmateriale</option> \
854
		[% END %] \
855
                            </select> \
856
                           </td> \
857
                          </tr> \
858
 	                  <tr> \
859
                           <td><label for="f7">07 Formater</label></td> \
860
                           <td> \
861
                            <select name="f7" id="f7"> \
862
	[% IF ( f7 ) %] \
863
		<option value=" " selected="selected">^ Ikke angitt</option> \
864
		[% ELSE %] \
865
		<option value=" ">^ Ikke angitt</option> \
866
		[% END %] \
867
	[% IF ( f7a ) %] \
868
		<option value="a" selected="selected">a Film og billedbånd (bredde): Standard 8 mm</option> \
869
		[% ELSE %] \
870
		<option value="a">a Film og billedbånd (bredde): Standard 8 mm</option> \
871
		[% END %] \
872
	[% IF ( f7b ) %] \
873
		<option value="b" selected="selected">b Film og billedbånd (bredde): Super 8 mm</option> \
874
		[% ELSE %] \
875
		<option value="b">b Film og billedbånd (bredde): Super 8 mm</option> \
876
		[% END %] \
877
	[% IF ( f7c ) %] \
878
		<option value="c" selected="selected">c Film og billedbånd (bredde): 9,5 mm</option> \
879
		[% ELSE %] \
880
		<option value="c">c Film og billedbånd (bredde): 9,5 mm</option> \
881
		[% END %] \
882
	[% IF ( f7d ) %] \
883
		<option value="d" selected="selected">d Film og billedbånd (bredde): 16 mm</option> \
884
		[% ELSE %] \
885
		<option value="d">d Film og billedbånd (bredde): 16 mm</option> \
886
		[% END %] \
887
	[% IF ( f7e ) %] \
888
		<option value="e" selected="selected">e Film og billedbånd (bredde): 28 mm</option> \
889
		[% ELSE %] \
890
		<option value="e">e Film og billedbånd (bredde): 28 mm</option> \
891
		[% END %] \
892
	[% IF ( f7f ) %] \
893
		<option value="f" selected="selected">f Film og billedbånd (bredde): 35 mm</option> \
894
		[% ELSE %] \
895
		<option value="f">f Film og billedbånd (bredde): 35 mm</option> \
896
		[% END %] \
897
	[% IF ( f7g ) %] \
898
		<option value="g" selected="selected">g Film og billedbånd (bredde): 70 mm</option> \
899
		[% ELSE %] \
900
		<option value="g">g Film og billedbånd (bredde): 70 mm</option> \
901
		[% END %] \
902
	[% IF ( f7j ) %] \
903
		<option value="j" selected="selected">j Dias (høyde x bredde): 5 x 5 cm</option> \
904
		[% ELSE %] \
905
		<option value="j">j Dias (høyde x bredde): 5 x 5 cm</option> \
906
		[% END %] \
907
	[% IF ( f7k ) %] \
908
		<option value="k" selected="selected">k Dias (høyde x bredde): 6 x 6 cm</option> \
909
		[% ELSE %] \
910
		<option value="k">k Dias (høyde x bredde): 6 x 6 cm</option> \
911
		[% END %] \
912
	[% IF ( f7s ) %] \
913
		<option value="s" selected="selected">s Transparenter og røntgenbilder (høyde x bredde): 10 x 13 cm</option> \
914
		[% ELSE %] \
915
		<option value="s">s Transparenter og røntgenbilder (høyde x bredde): 10 x 13 cm</option> \
916
		[% END %] \
917
	[% IF ( f7t ) %] \
918
		<option value="t" selected="selected">t Transparenter og røntgenbilder (høyde x bredde): 13 x 18 cm</option> \
919
		[% ELSE %] \
920
		<option value="t">t Transparenter og røntgenbilder (høyde x bredde): 13 x 18 cm</option> \
921
		[% END %] \
922
	[% IF ( f7u ) %] \
923
		<option value="u" selected="selected">u Ukjent</option> \
924
		[% ELSE %] \
925
		<option value="u">u Ukjent</option> \
926
		[% END %] \
927
	[% IF ( f7v ) %] \
928
		<option value="v" selected="selected">v Transparenter og røntgenbilder (høyde x bredde): 21 x 26 cm</option> \
929
		[% ELSE %] \
930
		<option value="v">v Transparenter og røntgenbilder (høyde x bredde): 21 x 26 cm</option> \
931
		[% END %] \
932
	[% IF ( f7w ) %] \
933
		<option value="w" selected="selected">w Transparenter og røntgenbilder (høyde x bredde): 23 x 23 cm</option> \
934
		[% ELSE %] \
935
		<option value="w">w Transparenter og røntgenbilder (høyde x bredde): 23 x 23 cm</option> \
936
		[% END %] \
937
	[% IF ( f7x ) %] \
938
		<option value="x" selected="selected">x Transparenter og røntgenbilder (høyde x bredde): 26 x 26 cm</option> \
939
		[% ELSE %] \
940
		<option value="x">x Transparenter og røntgenbilder (høyde x bredde): 26 x 26 cm</option> \
941
		[% END %] \
942
	[% IF ( f7y ) %] \
943
		<option value="y" selected="selected">y Transparenter og røntgenbilder (høyde x bredde): 18 x 18 cm</option> \
944
		[% ELSE %] \
945
		<option value="y">y Transparenter og røntgenbilder (høyde x bredde): 18 x 18 cm</option> \
946
		[% END %] \
947
	[% IF ( f7z ) %] \
948
		<option value="z" selected="selected">z Annet</option> \
949
		[% ELSE %] \
950
		<option value="z">z Annet</option> \
951
		[% END %] \
952
                            </select> \
953
                           </td> \
954
                          </tr> \
955
 	                  <tr> \
956
                           <td><label for="f8">08 Monteringsmateriale</label></td> \
957
                           <td> \
958
                            <select name="f8" id="f8"> \
959
	[% IF ( f8 ) %] \
960
		<option value=" " selected="selected">^ Ikke angitt</option> \
961
		[% ELSE %] \
962
		<option value=" ">^ Ikke angitt</option> \
963
		[% END %] \
964
	[% IF ( f8c ) %] \
965
		<option value="c" selected="selected">c Kartong</option> \
966
		[% ELSE %] \
967
		<option value="c">c Kartong</option> \
968
		[% END %] \
969
	[% IF ( f8d ) %] \
970
		<option value="d" selected="selected">d Glass</option> \
971
		[% ELSE %] \
972
		<option value="d">d Glass</option> \
973
		[% END %] \
974
	[% IF ( f8e ) %] \
975
		<option value="e" selected="selected">e Syntetisk</option> \
976
		[% ELSE %] \
977
		<option value="e">e Syntetisk</option> \
978
		[% END %] \
979
	[% IF ( f8h ) %] \
980
		<option value="h" selected="selected">h Metall</option> \
981
		[% ELSE %] \
982
		<option value="h">h Metall</option> \
983
		[% END %] \
984
	[% IF ( f8i ) %] \
985
		<option value="i" selected="selected">i Materialet er ikke montert</option> \
986
		[% ELSE %] \
987
		<option value="i">i Materialet er ikke montert</option> \
988
		[% END %] \
989
	[% IF ( f8j ) %] \
990
		<option value="j" selected="selected">j Metall og glass</option> \
991
		[% ELSE %] \
992
		<option value="j">j Metall og glass</option> \
993
		[% END %] \
994
	[% IF ( f8k ) %] \
995
		<option value="k" selected="selected">k Syntetisk og glass</option> \
996
		[% ELSE %] \
997
		<option value="k">k Syntetisk og glass</option> \
998
		[% END %] \
999
	[% IF ( f8m ) %] \
1000
		<option value="m" selected="selected">m Blandet</option> \
1001
		[% ELSE %] \
1002
		<option value="m">m Blandet</option> \
1003
		[% END %] \
1004
	[% IF ( f8u ) %] \
1005
		<option value="u" selected="selected">u Ukjent</option> \
1006
		[% ELSE %] \
1007
		<option value="u">u Ukjent</option> \
1008
		[% END %] \
1009
	[% IF ( f8z ) %] \
1010
		<option value="z" selected="selected">z Annet</option> \
1011
		[% ELSE %] \
1012
		<option value="z">z Annet</option> \
1013
		[% END %] \
1014
                            </select> \
1015
                           </td> \
1016
                          </tr> \
1017
                        </table>';  
1018
    break;
1019
  case "h":
1020
    divOutput.innerHTML='<table> \
1021
                          <tr> \
1022
                           <td>00 Type materiale</td> \
1023
                           <td>h Mikroform</td> \
1024
	                  </tr> \
1025
	                  <tr> \
1026
                           <td><label for="f1">01 Spesielle materialbetegnelser</label></td> \
1027
                           <td> \
1028
                            <select id="f1" name="f1"> \
1029
	[% IF ( f1 ) %] \
1030
		<option value=" " selected="selected">^ Ikke angitt</option> \
1031
		[% ELSE %] \
1032
		<option value=" ">^ Ikke angitt</option> \
1033
		[% END %] \
1034
	[% IF ( f1a ) %] \
1035
		<option value="a" selected="selected">a Vinduskort</option> \
1036
		[% ELSE %] \
1037
		<option value="a">a Vinduskort</option> \
1038
		[% END %] \
1039
	[% IF ( f1c ) %] \
1040
		<option value="c" selected="selected">c Mikrofilmkassett</option> \
1041
		[% ELSE %] \
1042
		<option value="c">c Mikrofilmkassett</option> \
1043
		[% END %] \
1044
	[% IF ( f1d ) %] \
1045
		<option value="d" selected="selected">d Mikrofilmspole</option> \
1046
		[% ELSE %] \
1047
		<option value="d">d Mikrofilmspole</option> \
1048
		[% END %] \
1049
	[% IF ( f1e ) %] \
1050
		<option value="e" selected="selected">e Mikrofilmkort</option> \
1051
		[% ELSE %] \
1052
		<option value="e">e Mikrofilmkort</option> \
1053
		[% END %] \
1054
	[% IF ( f1g ) %] \
1055
		<option value="g" selected="selected">g Mikro-opak</option> \
1056
		[% ELSE %] \
1057
		<option value="g">g Mikro-opak</option> \
1058
		[% END %] \
1059
	[% IF ( f1z ) %] \
1060
		<option value="z" selected="selected">z Annen mikroformtype</option> \
1061
		[% ELSE %] \
1062
		<option value="z">z Annen mikroformtype</option> \
1063
		[% END %] \
1064
                            </select> \
1065
                           </td> \
1066
                          </tr> \
1067
 	                  <tr> \
1068
                           <td><label for="f2">02 Undefined</label></td> \
1069
                           <td> \
1070
                            <input type="hidden" name="f2" id="f2" size="1" value=" " /> \
1071
                           </td> \
1072
                          </tr> \
1073
                          <tr> \
1074
                           <td><label for="f3">03 Positiv/negativ</label></td> \
1075
                            <td> \
1076
                             <select id="f3" name="f3"> \
1077
	[% IF ( f3 ) %] \
1078
		<option value=" " selected="selected">^ Ikke angitt</option> \
1079
		[% ELSE %] \
1080
		<option value=" ">^ Ikke angitt</option> \
1081
		[% END %] \
1082
	[% IF ( f3a ) %] \
1083
		<option value="a" selected="selected">a Positiv</option> \
1084
		[% ELSE %] \
1085
		<option value="a">a Positiv</option> \
1086
		[% END %] \
1087
	[% IF ( f3b ) %] \
1088
		<option value="b" selected="selected">b Negativ</option> \
1089
		[% ELSE %] \
1090
		<option value="b">b Negativ</option> \
1091
		[% END %] \
1092
	[% IF ( f3m ) %] \
1093
		<option value="m" selected="selected">m Blandet polaritet</option> \
1094
		[% ELSE %] \
1095
		<option value="m">m Blandet polaritet</option> \
1096
		[% END %] \
1097
	[% IF ( f3u ) %] \
1098
		<option value="u" selected="selected">u Ukjent</option> \
1099
		[% ELSE %] \
1100
		<option value="u">u Ukjent</option> \
1101
		[% END %] \
1102
	[% IF ( f3z ) %] \
1103
		<option value="z" selected="selected">z Annen polaritet</option> \
1104
		[% ELSE %] \
1105
		<option value="z">z Annen polaritet</option> \
1106
		[% END %] \
1107
                             </select> \
1108
                            </td> \
1109
                           </td> \
1110
                          <tr> \
1111
                           <td><label for="f4">04 Formater</label></td> \
1112
                            <td> \
1113
                             <select id="f4" name="f4"> \
1114
	[% IF ( f4 ) %] \
1115
		<option value=" " selected="selected">^ Ikke angitt</option> \
1116
		[% ELSE %] \
1117
		<option value=" ">^ Ikke angitt</option> \
1118
		[% END %] \
1119
	[% IF ( f4a ) %] \
1120
		<option value="a" selected="selected">a Mikrofilm (bredde): 8 mm</option> \
1121
		[% ELSE %] \
1122
		<option value="a">a Mikrofilm (bredde): 8 mm</option> \
1123
		[% END %] \
1124
	[% IF ( f4d ) %] \
1125
		<option value="d" selected="selected">d Mikrofilm (bredde): 16 mm</option> \
1126
		[% ELSE %] \
1127
		<option value="d">d Mikrofilm (bredde): 16 mm</option> \
1128
		[% END %] \
1129
	[% IF ( f4f ) %] \
1130
		<option value="f" selected="selected">f Mikrofilm (bredde): 35 mm</option> \
1131
		[% ELSE %] \
1132
		<option value="f">f Mikrofilm (bredde): 35 mm</option> \
1133
		[% END %] \
1134
	[% IF ( f4g ) %] \
1135
		<option value="g" selected="selected">g Mikrofilm (bredde): 70 mm</option> \
1136
		[% ELSE %] \
1137
		<option value="g">g Mikrofilm (bredde): 70 mm</option> \
1138
		[% END %] \
1139
	[% IF ( f4h ) %] \
1140
		<option value="h" selected="selected">h Mikrofilm (bredde): 105 mm</option> \
1141
		[% ELSE %] \
1142
		<option value="h">h Mikrofilm (bredde): 105 mm</option> \
1143
		[% END %] \
1144
	[% IF ( f4l ) %] \
1145
		<option value="l" selected="selected">l Mikrofilmkort og Mikro-opak (høyde x bredde): 8 x 13 cm</option> \
1146
		[% ELSE %] \
1147
		<option value="l">l Mikrofilmkort og Mikro-opak (høyde x bredde): 8 x 13 cm</option> \
1148
		[% END %] \
1149
	[% IF ( f4m ) %] \
1150
		<option value="m" selected="selected">m Mikrofilmkort og Mikro-opak (høyde x bredde): 11 x 15 cm (standard mikrofilmkort)</option> \
1151
		[% ELSE %] \
1152
		<option value="m">m Mikrofilmkort og Mikro-opak (høyde x bredde): 11 x 15 cm (standard mikrofilmkort)</option> \
1153
		[% END %] \
1154
	[% IF ( f4o ) %] \
1155
		<option value="o" selected="selected">o Mikrofilmkort og Mikro-opak (høyde x bredde): 16 x 23 cm</option> \
1156
		[% ELSE %] \
1157
		<option value="o">o Mikrofilmkort og Mikro-opak (høyde x bredde): 16 x 23 cm</option> \
1158
		[% END %] \
1159
	[% IF ( f4p ) %] \
1160
		<option value="p" selected="selected">p Vinduskort (høyde x bredde): 9 x 19 cm</option> \
1161
		[% ELSE %] \
1162
		<option value="p">p Vinduskort (høyde x bredde): 9 x 19 cm</option> \
1163
		[% END %] \
1164
	[% IF ( f4u ) %] \
1165
		<option value="u" selected="selected">u Ukjent</option> \
1166
		[% ELSE %] \
1167
		<option value="u">u Ukjent</option> \
1168
		[% END %] \
1169
	[% IF ( f4z ) %] \
1170
		<option value="z" selected="selected">z Annet</option> \
1171
		[% ELSE %] \
1172
		<option value="z">z Annet</option> \
1173
		[% END %] \
1174
                             </select> \
1175
                            </td> \
1176
                           </td> \
1177
                          <tr> \
1178
                           <td><label for="f5">05 Reduksjonsskala</label></td> \
1179
                            <td> \
1180
                             <select id="f5" name="f5"> \
1181
	[% IF ( f5 ) %] \
1182
		<option value=" " selected="selected">^ Ikke angitt</option> \
1183
		[% ELSE %] \
1184
		<option value=" ">^ Ikke angitt</option> \
1185
		[% END %] \
1186
	[% IF ( f5a ) %] \
1187
		<option value="a" selected="selected">a Lav reduksjon. Mindre enn 16:1 (< 016)</option> \
1188
		[% ELSE %] \
1189
		<option value="a">a Lav reduksjon. Mindre enn 16:1 (< 016)</option> \
1190
		[% END %] \
1191
	[% IF ( f5b ) %] \
1192
		<option value="b" selected="selected">b Normal reduksjon. Mellom 16:1 og 30:1 (016-030)</option> \
1193
		[% ELSE %] \
1194
		<option value="b">b Normal reduksjon. Mellom 16:1 og 30:1 (016-030)</option> \
1195
		[% END %] \
1196
	[% IF ( f5c ) %] \
1197
		<option value="c" selected="selected">c Høy reduksjon. Mellom 31:1 og 60:1 (031-060)</option> \
1198
		[% ELSE %] \
1199
		<option value="c">c Høy reduksjon. Mellom 31:1 og 60:1 (031-060)</option> \
1200
		[% END %] \
1201
	[% IF ( f5d ) %] \
1202
		<option value="d" selected="selected">d Meget høy reduksjon. Mellom 61:1 og 90:1 (061-090)</option> \
1203
		[% ELSE %] \
1204
		<option value="d">d Meget høy reduksjon. Mellom 61:1 og 90:1 (061-090)</option> \
1205
		[% END %] \
1206
	[% IF ( f5e ) %] \
1207
		<option value="e" selected="selected">e Ekstra høy reduksjon. Over 90:1 (> 090)</option> \
1208
		[% ELSE %] \
1209
		<option value="e">e Ekstra høy reduksjon. Over 90:1 (> 090)</option> \
1210
		[% END %] \
1211
	[% IF ( f5u ) %] \
1212
		<option value="u" selected="selected">u Ukjent</option> \
1213
		[% ELSE %] \
1214
		<option value="u">u Ukjent</option> \
1215
		[% END %] \
1216
	[% IF ( f5v ) %] \
1217
		<option value="v" selected="selected">v Reduksjonsskala varierer</option> \
1218
		[% ELSE %] \
1219
		<option value="v">v Reduksjonsskala varierer</option> \
1220
		[% END %] \
1221
                             </select> \
1222
                            </td> \
1223
                           </td> \
1224
                          <tr> \
1225
                           <td><label for="f6">06-08 Reduksjonsskala - Nøyaktig angivelse</label> <br /><I>(Skalaen oppgis med tre sifre, f.eks. 015, 048). En strek brukes for ukjente sifre (f.eks. 03-, 1--). Bruk ||| dersom info ikke er oppgitt.)</i></td> \
1226
				<td><input type="text" size=3 name="f6" id = "f6" value="[% f6 | html %][% f7 | html %][% f8 | html %]"> - 001-999</input> \
1227
                            </td> \
1228
                           </td> \
1229
                          <tr> \
1230
                           <td><label for="f7">09 Farge</label></td> \
1231
                            <td> \
1232
                             <select id="f7" name="f7"> \
1233
	[% IF ( f9 ) %] \
1234
		<option value=" " selected="selected">^ Ikke angitt</option> \
1235
		[% ELSE %] \
1236
		<option value=" ">^ Ikke angitt</option> \
1237
		[% END %] \
1238
	[% IF ( f9b ) %] \
1239
		<option value="b" selected="selected">b Svart-hvitt (eller monokrom)</option> \
1240
		[% ELSE %] \
1241
		<option value="b">b Svart-hvitt (eller monokrom)</option> \
1242
		[% END %] \
1243
	[% IF ( f9c ) %] \
1244
		<option value="c" selected="selected">c Farger</option> \
1245
		[% ELSE %] \
1246
		<option value="c">c Farger</option> \
1247
		[% END %] \
1248
	[% IF ( f9m ) %] \
1249
		<option value="m" selected="selected">m Blandet</option> \
1250
		[% ELSE %] \
1251
		<option value="m">m Blandet</option> \
1252
		[% END %] \
1253
	[% IF ( f9u ) %] \
1254
		<option value="u" selected="selected">u Ukjent</option> \
1255
		[% ELSE %] \
1256
		<option value="u">u Ukjent</option> \
1257
		[% END %] \
1258
	[% IF ( f9z ) %] \
1259
		<option value="z" selected="selected">z Annet</option> \
1260
		[% ELSE %] \
1261
		<option value="z">z Annet</option> \
1262
		[% END %] \
1263
                             </select> \
1264
                            </td> \
1265
                           </td> \
1266
                          <tr> \
1267
                           <td><label for="f8">10 Emulsjon for film</label></td> \
1268
                            <td> \
1269
                             <select id="f8" name="f8"> \
1270
	[% IF ( f10 ) %] \
1271
		<option value=" " selected="selected">^ Ikke angitt</option> \
1272
		[% ELSE %] \
1273
		<option value=" ">^ Ikke angitt</option> \
1274
		[% END %] \
1275
	[% IF ( f10b ) %] \
1276
		<option value="b" selected="selected">b Diazo</option> \
1277
		[% ELSE %] \
1278
		<option value="b">b Diazo</option> \
1279
		[% END %] \
1280
	[% IF ( f10c ) %] \
1281
		<option value="c" selected="selected">c Vesikulær</option> \
1282
		[% ELSE %] \
1283
		<option value="c">c Vesikulær</option> \
1284
		[% END %] \
1285
	[% IF ( f10m ) %] \
1286
		<option value="m" selected="selected">m Blandet</option> \
1287
		[% ELSE %] \
1288
		<option value="m">m Blandet</option> \
1289
		[% END %] \
1290
	[% IF ( f10n ) %] \
1291
		<option value="n" selected="selected">n Kode for emulsjon ikke relevant</option> \
1292
		[% ELSE %] \
1293
		<option value="n">n Kode for emulsjon ikke relevant</option> \
1294
		[% END %] \
1295
	[% IF ( f10u ) %] \
1296
		<option value="u" selected="selected">u Ukjent</option> \
1297
		[% ELSE %] \
1298
		<option value="u">u Ukjent</option> \
1299
		[% END %] \
1300
	[% IF ( f10z ) %] \
1301
		<option value="z" selected="selected">z Annet</option> \
1302
		[% ELSE %] \
1303
		<option value="z">z Annet</option> \
1304
		[% END %] \
1305
                             </select> \
1306
                            </td> \
1307
                           </td> \
1308
                          <tr> \
1309
                           <td><label for="f11">11 Generasjon</label></td> \
1310
                            <td> \
1311
                             <select id="f11" name="f11"> \
1312
	[% IF ( f11 ) %] \
1313
		<option value=" " selected="selected">^ Ikke angitt</option> \
1314
		[% ELSE %] \
1315
		<option value=" ">^ Ikke angitt</option> \
1316
		[% END %] \
1317
	[% IF ( f11a ) %] \
1318
		<option value="a" selected="selected">a Master (første generasjon)</option> \
1319
		[% ELSE %] \
1320
		<option value="a">a Master (første generasjon)</option> \
1321
		[% END %] \
1322
	[% IF ( f11b ) %] \
1323
		<option value="b" selected="selected">b Trykningsmaster</option> \
1324
		[% ELSE %] \
1325
		<option value="b">b Trykningsmaster</option> \
1326
		[% END %] \
1327
	[% IF ( f11c ) %] \
1328
		<option value="c" selected="selected">c Tjenestekopi</option> \
1329
		[% ELSE %] \
1330
		<option value="c">c Tjenestekopi</option> \
1331
		[% END %] \
1332
	[% IF ( f11m ) %] \
1333
		<option value="m" selected="selected">m Blandet</option> \
1334
		[% ELSE %] \
1335
		<option value="m">m Blandet</option> \
1336
		[% END %] \
1337
	[% IF ( f11u ) %] \
1338
		<option value="u" selected="selected">u Ukjent</option> \
1339
		[% ELSE %] \
1340
		<option value="u">u Ukjent</option> \
1341
		[% END %] \
1342
                             </select> \
1343
                            </td> \
1344
                           </td> \
1345
                          <tr> \
1346
                           <td><label for="f12">12 RÃ¥film</label></td> \
1347
                            <td> \
1348
                             <select id="f12" name="f12"> \
1349
	[% IF ( f12 ) %] \
1350
		<option value=" " selected="selected">^ Ikke angitt</option> \
1351
		[% ELSE %] \
1352
		<option value=" ">^ Ikke angitt</option> \
1353
		[% END %] \
1354
	[% IF ( f12a ) %] \
1355
		<option value="a" selected="selected">a Sikkerhetsfilm</option> \
1356
		[% ELSE %] \
1357
		<option value="a">a Sikkerhetsfilm</option> \
1358
		[% END %] \
1359
	[% IF ( f12b ) %] \
1360
		<option value="b" selected="selected">b Ikke sikkerhetsfilm</option> \
1361
		[% ELSE %] \
1362
		<option value="b">b Ikke sikkerhetsfilm</option> \
1363
		[% END %] \
1364
	[% IF ( f12n ) %] \
1365
		<option value="n" selected="selected">n Kode for råfilm ikke relevant</option> \
1366
		[% ELSE %] \
1367
		<option value="n">n Kode for råfilm ikke relevant</option> \
1368
		[% END %] \
1369
	[% IF ( f12u ) %] \
1370
		<option value="u" selected="selected">u Ukjent</option> \
1371
		[% ELSE %] \
1372
		<option value="u">u Ukjent</option> \
1373
		[% END %] \
1374
                             </select> \
1375
                            </td> \
1376
                           </td> \
1377
                          </table>';
1378
    break;
1379
  case "k":
1380
    divOutput.innerHTML='<table> \
1381
                          <tr> \
1382
                           <td>00 Type materiale</td> \
1383
                           <td>k Grafisk materiale som er ugjenomtrengelig for lys</td> \
1384
                          </tr> \
1385
 	                  <tr> \
1386
                           <td><label for="f1">01 Spesielle materialbetegnelser</label></td> \
1387
                           <td> \
1388
                            <select name="f1" id="f1"> \
1389
	[% IF ( f1 ) %] \
1390
		<option value=" " selected="selected">^ Ikke angitt</option> \
1391
		[% ELSE %] \
1392
		<option value=" ">^ Ikke angitt</option> \
1393
		[% END %] \
1394
	[% IF ( f1c ) %] \
1395
		<option value="c" selected="selected">c Collage - Originalt kunstverk</option> \
1396
		[% ELSE %] \
1397
		<option value="c">c Collage - Originalt kunstverk</option> \
1398
		[% END %] \
1399
	[% IF ( f1d ) %] \
1400
		<option value="d" selected="selected">d Tegning - Originalt kunstverk</option> \
1401
		[% ELSE %] \
1402
		<option value="d">d Tegning - Originalt kunstverk</option> \
1403
		[% END %] \
1404
	[% IF ( f1e ) %] \
1405
		<option value="e" selected="selected">e Maleri - Originalt kunstverk</option> \
1406
		[% ELSE %] \
1407
		<option value="e">e Maleri - Originalt kunstverk</option> \
1408
		[% END %] \
1409
	[% IF ( f1g ) %] \
1410
		<option value="g" selected="selected">g Fotografi - negativ</option> \
1411
		[% ELSE %] \
1412
		<option value="g">g Fotografi - negativ</option> \
1413
		[% END %] \
1414
	[% IF ( f1h ) %] \
1415
		<option value="h" selected="selected">h Fotografi</option> \
1416
		[% ELSE %] \
1417
		<option value="h">h Fotografi</option> \
1418
		[% END %] \
1419
	[% IF ( f1i ) %] \
1420
		<option value="i" selected="selected">i Bilde</option> \
1421
		[% ELSE %] \
1422
		<option value="i">i Bilde</option> \
1423
		[% END %] \
1424
	[% IF ( f1j ) %] \
1425
		<option value="j" selected="selected">j Grafisk blad</option> \
1426
		[% ELSE %] \
1427
		<option value="j">j Grafisk blad</option> \
1428
		[% END %] \
1429
	[% IF ( f1k ) %] \
1430
		<option value="k" selected="selected">k Flipover</option> \
1431
		[% ELSE %] \
1432
		<option value="k">k Flipover</option> \
1433
		[% END %] \
1434
	[% IF ( f1l ) %] \
1435
		<option value="l" selected="selected">l Teknisk tegning</option> \
1436
		[% ELSE %] \
1437
		<option value="l">l Teknisk tegning</option> \
1438
		[% END %] \
1439
	[% IF ( f1m ) %] \
1440
		<option value="m" selected="selected">m Studieplansje</option> \
1441
		[% ELSE %] \
1442
		<option value="m">m Studieplansje</option> \
1443
		[% END %] \
1444
	[% IF ( f1n ) %] \
1445
		<option value="n" selected="selected">n Plansje</option> \
1446
		[% ELSE %] \
1447
		<option value="n">n Plansje</option> \
1448
		[% END %] \
1449
	[% IF ( f1o ) %] \
1450
		<option value="o" selected="selected">o Billedkort</option> \
1451
		[% ELSE %] \
1452
		<option value="o">o Billedkort</option> \
1453
		[% END %] \
1454
	[% IF ( f1p ) %] \
1455
		<option value="p" selected="selected">p Ordkort</option> \
1456
		[% ELSE %] \
1457
		<option value="p">p Ordkort</option> \
1458
		[% END %] \
1459
	[% IF ( f1q ) %] \
1460
		<option value="q" selected="selected">q Symbolkort</option> \
1461
		[% ELSE %] \
1462
		<option value="q">q Symbolkort</option> \
1463
		[% END %] \
1464
	[% IF ( f1r ) %] \
1465
		<option value="r" selected="selected">r Kunstreproduksjon</option> \
1466
		[% ELSE %] \
1467
		<option value="r">r Kunstreproduksjon</option> \
1468
		[% END %] \
1469
	[% IF ( f1s ) %] \
1470
		<option value="s" selected="selected">s Postkort</option> \
1471
		[% ELSE %] \
1472
		<option value="s">s Postkort</option> \
1473
		[% END %] \
1474
	[% IF ( f1t ) %] \
1475
		<option value="t" selected="selected">t Plakat</option> \
1476
		[% ELSE %] \
1477
		<option value="t">t Plakat</option> \
1478
		[% END %] \
1479
	[% IF ( f1z ) %] \
1480
		<option value="z" selected="selected">z Annen materialtype</option> \
1481
		[% ELSE %] \
1482
		<option value="z">z Annen materialtype</option> \
1483
		[% END %] \
1484
                            </select> \
1485
                           </td> \
1486
                          </tr> \
1487
 	                  <tr> \
1488
                           <td><label for="f2">02 Udefinert</label></td> \
1489
                           <td> \
1490
                            <input type="hidden" name="f2" id="f2" size="1" value=" " /> \
1491
                           </td> \
1492
                          </tr> \
1493
 	                  <tr> \
1494
                           <td><label for="f3">03 Farge</label></td> \
1495
                           <td> \
1496
                            <select name="f3" id="f3"> \
1497
	[% IF ( f3 ) %] \
1498
		<option value=" " selected="selected">^ Ikke angitt</option> \
1499
		[% ELSE %] \
1500
		<option value=" ">^ Ikke angitt</option> \
1501
		[% END %] \
1502
	[% IF ( f3a ) %] \
1503
		<option value="a" selected="selected">a En-farget</option> \
1504
		[% ELSE %] \
1505
		<option value="a">a En-farget</option> \
1506
		[% END %] \
1507
	[% IF ( f3b ) %] \
1508
		<option value="b" selected="selected">b Svart-hvitt</option> \
1509
		[% ELSE %] \
1510
		<option value="b">b Svart-hvitt</option> \
1511
		[% END %] \
1512
	[% IF ( f3c ) %] \
1513
		<option value="c" selected="selected">c Farger</option> \
1514
		[% ELSE %] \
1515
		<option value="c">c Farger</option> \
1516
		[% END %] \
1517
	[% IF ( f3h ) %] \
1518
		<option value="h" selected="selected">h HÃ¥ndkolorert</option> \
1519
		[% ELSE %] \
1520
		<option value="h">h HÃ¥ndkolorert</option> \
1521
		[% END %] \
1522
	[% IF ( f3m ) %] \
1523
		<option value="m" selected="selected">m Blandet</option> \
1524
		[% ELSE %] \
1525
		<option value="m">m Blandet</option> \
1526
		[% END %] \
1527
	[% IF ( f3u ) %] \
1528
		<option value="u" selected="selected">u Ukjent</option> \
1529
		[% ELSE %] \
1530
		<option value="u">u Ukjent</option> \
1531
		[% END %] \
1532
	[% IF ( f3z ) %] \
1533
		<option value="z" selected="selected">z Annet</option> \
1534
		[% ELSE %] \
1535
		<option value="z">z Annet</option> \
1536
		[% END %] \
1537
                            </select> \
1538
                           </td> \
1539
                          </tr> \
1540
 	                  <tr> \
1541
                           <td><label for="f4">04 Fysisk materiale</label></td> \
1542
                           <td> \
1543
                            <select name="f4" id="f4"> \
1544
	[% IF ( f4 ) %] \
1545
		<option value=" " selected="selected">^ Ikke angitt</option> \
1546
		[% ELSE %] \
1547
		<option value=" ">^ Ikke angitt</option> \
1548
		[% END %] \
1549
	[% IF ( f4a ) %] \
1550
		<option value="a" selected="selected">a Lerret</option> \
1551
		[% ELSE %] \
1552
		<option value="a">a Lerret</option> \
1553
		[% END %] \
1554
	[% IF ( f4b ) %] \
1555
		<option value="b" selected="selected">b Bristol-kartong</option> \
1556
		[% ELSE %] \
1557
		<option value="b">b Bristol-kartong</option> \
1558
		[% END %] \
1559
	[% IF ( f4c ) %] \
1560
		<option value="c" selected="selected">c Kartong</option> \
1561
		[% ELSE %] \
1562
		<option value="c">c Kartong</option> \
1563
		[% END %] \
1564
	[% IF ( f4d ) %] \
1565
		<option value="d" selected="selected">d Glass</option> \
1566
		[% ELSE %] \
1567
		<option value="d">d Glass</option> \
1568
		[% END %] \
1569
	[% IF ( f4e ) %] \
1570
		<option value="e" selected="selected">e Syntetisk</option> \
1571
		[% ELSE %] \
1572
		<option value="e">e Syntetisk</option> \
1573
		[% END %] \
1574
	[% IF ( f4f ) %] \
1575
		<option value="f" selected="selected">f Hud</option> \
1576
		[% ELSE %] \
1577
		<option value="f">f Hud</option> \
1578
		[% END %] \
1579
	[% IF ( f4g ) %] \
1580
		<option value="g" selected="selected">g Tekstil</option> \
1581
		[% ELSE %] \
1582
		<option value="g">g Tekstil</option> \
1583
		[% END %] \
1584
	[% IF ( f4h ) %] \
1585
		<option value="h" selected="selected">h Metall</option> \
1586
		[% ELSE %] \
1587
		<option value="h">h Metall</option> \
1588
		[% END %] \
1589
	[% IF ( f4m ) %] \
1590
		<option value="m" selected="selected">m Blandet</option> \
1591
		[% ELSE %] \
1592
		<option value="m">m Blandet</option> \
1593
		[% END %] \
1594
	[% IF ( f4o ) %] \
1595
		<option value="o" selected="selected">o Papir</option> \
1596
		[% ELSE %] \
1597
		<option value="o">o Papir</option> \
1598
		[% END %] \
1599
	[% IF ( f4p ) %] \
1600
		<option value="p" selected="selected">p Gips</option> \
1601
		[% ELSE %] \
1602
		<option value="p">p Gips</option> \
1603
		[% END %] \
1604
	[% IF ( f4q ) %] \
1605
		<option value="q" selected="selected">q Huntonitt</option> \
1606
		[% ELSE %] \
1607
		<option value="q">q Huntonitt</option> \
1608
		[% END %] \
1609
	[% IF ( f4r ) %] \
1610
		<option value="r" selected="selected">r Porselen</option> \
1611
		[% ELSE %] \
1612
		<option value="r">r Porselen</option> \
1613
		[% END %] \
1614
	[% IF ( f4s ) %] \
1615
		<option value="s" selected="selected">s Stein</option> \
1616
		[% ELSE %] \
1617
		<option value="s">s Stein</option> \
1618
		[% END %] \
1619
	[% IF ( f4t ) %] \
1620
		<option value="t" selected="selected">t Tre</option> \
1621
		[% ELSE %] \
1622
		<option value="t">t Tre</option> \
1623
		[% END %] \
1624
	[% IF ( f4u ) %] \
1625
		<option value="u" selected="selected">u Ukjent</option> \
1626
		[% ELSE %] \
1627
		<option value="u">u Ukjent</option> \
1628
		[% END %] \
1629
	[% IF ( f4z ) %] \
1630
		<option value="z" selected="selected">z Annet</option> \
1631
		[% ELSE %] \
1632
		<option value="z">z Annet</option> \
1633
		[% END %] \
1634
                            </select> \
1635
                           </td> \
1636
                          </tr> \
1637
 	                  <tr> \
1638
                           <td><label for="f5">05 Monteringsmateriale</label></td> \
1639
                           <td> \
1640
                            <select name="f5" id="f5"> \
1641
	[% IF ( f5 ) %] \
1642
		<option value=" " selected="selected">^ Ikke angitt</option> \
1643
		[% ELSE %] \
1644
		<option value=" ">^ Ikke angitt</option> \
1645
		[% END %] \
1646
	[% IF ( f5a ) %] \
1647
		<option value="a" selected="selected">a Lerret</option> \
1648
		[% ELSE %] \
1649
		<option value="a">a Lerret</option> \
1650
		[% END %] \
1651
	[% IF ( f5b ) %] \
1652
		<option value="b" selected="selected">b Bristol-kartong</option> \
1653
		[% ELSE %] \
1654
		<option value="b">b Bristol-kartong</option> \
1655
		[% END %] \
1656
	[% IF ( f5c ) %] \
1657
		<option value="c" selected="selected">c Kartong</option> \
1658
		[% ELSE %] \
1659
		<option value="c">c Kartong</option> \
1660
		[% END %] \
1661
	[% IF ( f5d ) %] \
1662
		<option value="d" selected="selected">d Glass</option> \
1663
		[% ELSE %] \
1664
		<option value="d">d Glass</option> \
1665
		[% END %] \
1666
	[% IF ( f5e ) %] \
1667
		<option value="e" selected="selected">e Syntetisk</option> \
1668
		[% ELSE %] \
1669
		<option value="e">e Syntetisk</option> \
1670
		[% END %] \
1671
	[% IF ( f5f ) %] \
1672
		<option value="f" selected="selected">f Hud</option> \
1673
		[% ELSE %] \
1674
		<option value="f">f Hud</option> \
1675
		[% END %] \
1676
	[% IF ( f5g ) %] \
1677
		<option value="g" selected="selected">g Tekstil</option> \
1678
		[% ELSE %] \
1679
		<option value="g">g Tekstil</option> \
1680
		[% END %] \
1681
	[% IF ( f5h ) %] \
1682
		<option value="h" selected="selected">h Metall</option> \
1683
		[% ELSE %] \
1684
		<option value="h">h Metall</option> \
1685
		[% END %] \
1686
	[% IF ( f5i ) %] \
1687
		<option value="i" selected="selected">i Materialet er ikke montert</option> \
1688
		[% ELSE %] \
1689
		<option value="i">i Materialet er ikke montert</option> \
1690
		[% END %] \
1691
	[% IF ( f5m ) %] \
1692
		<option value="m" selected="selected">m Blandet</option> \
1693
		[% ELSE %] \
1694
		<option value="m">m Blandet</option> \
1695
		[% END %] \
1696
	[% IF ( f5o ) %] \
1697
		<option value="o" selected="selected">o Papir</option> \
1698
		[% ELSE %] \
1699
		<option value="o">o Papir</option> \
1700
		[% END %] \
1701
	[% IF ( f5p ) %] \
1702
		<option value="p" selected="selected">p Gips</option> \
1703
		[% ELSE %] \
1704
		<option value="p">p Gips</option> \
1705
		[% END %] \
1706
	[% IF ( f5q ) %] \
1707
		<option value="q" selected="selected">q Huntonitt</option> \
1708
		[% ELSE %] \
1709
		<option value="q">q Huntonitt</option> \
1710
		[% END %] \
1711
	[% IF ( f5r ) %] \
1712
		<option value="r" selected="selected">r Porselen</option> \
1713
		[% ELSE %] \
1714
		<option value="r">r Porselen</option> \
1715
		[% END %] \
1716
	[% IF ( f5s ) %] \
1717
		<option value="s" selected="selected">s Stein</option> \
1718
		[% ELSE %] \
1719
		<option value="s">s Stein</option> \
1720
		[% END %] \
1721
	[% IF ( f5t ) %] \
1722
		<option value="t" selected="selected">t Tre</option> \
1723
		[% ELSE %] \
1724
		<option value="t">t Tre</option> \
1725
		[% END %] \
1726
	[% IF ( f5u ) %] \
1727
		<option value="u" selected="selected">u Ukjent</option> \
1728
		[% ELSE %] \
1729
		<option value="u">u Ukjent</option> \
1730
		[% END %] \
1731
	[% IF ( f5z ) %] \
1732
		<option value="z" selected="selected">z Annet</option> \
1733
		[% ELSE %] \
1734
		<option value="z">z Annet</option> \
1735
		[% END %] \
1736
                            </select> \
1737
                           </td> \
1738
                          </tr> \
1739
                        </table>';  
1740
    break;
1741
  case "m":
1742
    divOutput.innerHTML='<table> \
1743
                          <tr> \
1744
                           <td>00 Type materiale</td> \
1745
                           <td>m Film</td> \
1746
                          </tr> \
1747
 	                  <tr> \
1748
                           <td><label for="f1">01 Spesielle materialbetegnelser</label></td> \
1749
                           <td> \
1750
                            <select name="f1" id="f1"> \
1751
	[% IF ( f1 ) %] \
1752
		<option value=" " selected="selected">^ Ikke angitt</option> \
1753
		[% ELSE %] \
1754
		<option value=" ">^ Ikke angitt</option> \
1755
		[% END %] \
1756
	[% IF ( f1c ) %] \
1757
		<option value="c" selected="selected">c Filmsløyfe</option> \
1758
		[% ELSE %] \
1759
		<option value="c">c Filmsløyfe</option> \
1760
		[% END %] \
1761
	[% IF ( f1f ) %] \
1762
		<option value="f" selected="selected">f Filmkassett</option> \
1763
		[% ELSE %] \
1764
		<option value="f">f Filmkassett</option> \
1765
		[% END %] \
1766
	[% IF ( f1r ) %] \
1767
		<option value="r" selected="selected">r Filmspole</option> \
1768
		[% ELSE %] \
1769
		<option value="r">r Filmspole</option> \
1770
		[% END %] \
1771
	[% IF ( f1z ) %] \
1772
		<option value="z" selected="selected">z Annen filmtype</option> \
1773
		[% ELSE %] \
1774
		<option value="z">z Annen filmtype</option> \
1775
		[% END %] \
1776
                            </select> \
1777
                           </td> \
1778
                          </tr> \
1779
 	                  <tr> \
1780
                           <td><label for="f2">02 Udefinert</label></td> \
1781
                           <td> \
1782
                            <input type="hidden" name="f2" id="f2" size="1" value=" " /> \
1783
                           </td> \
1784
                          </tr> \
1785
 	                  <tr> \
1786
                           <td><label for="f3">03 Farge</label></td> \
1787
                           <td> \
1788
                            <select name="f3" id="f3"> \
1789
	[% IF ( f3 ) %] \
1790
		<option value=" " selected="selected">^ Ikke angitt</option> \
1791
		[% ELSE %] \
1792
		<option value=" ">^ Ikke angitt</option> \
1793
		[% END %] \
1794
	[% IF ( f3b ) %] \
1795
		<option value="b" selected="selected">b Svart-hvitt</option> \
1796
		[% ELSE %] \
1797
		<option value="b">b Svart-hvitt</option> \
1798
		[% END %] \
1799
	[% IF ( f3c ) %] \
1800
		<option value="c" selected="selected">c Farger</option> \
1801
		[% ELSE %] \
1802
		<option value="c">c Farger</option> \
1803
		[% END %] \
1804
	[% IF ( f3h ) %] \
1805
		<option value="h" selected="selected">h HÃ¥ndkolorert</option> \
1806
		[% ELSE %] \
1807
		<option value="h">h HÃ¥ndkolorert</option> \
1808
		[% END %] \
1809
	[% IF ( f3m ) %] \
1810
		<option value="m" selected="selected">m Blandet</option> \
1811
		[% ELSE %] \
1812
		<option value="m">m Blandet</option> \
1813
		[% END %] \
1814
	[% IF ( f3n ) %] \
1815
		<option value="n" selected="selected">n Kode for farge ikke relevant</option> \
1816
		[% ELSE %] \
1817
		<option value="n">n Kode for farge ikke relevant</option> \
1818
		[% END %] \
1819
	[% IF ( f3u ) %] \
1820
		<option value="u" selected="selected">u Ukjent</option> \
1821
		[% ELSE %] \
1822
		<option value="u">u Ukjent</option> \
1823
		[% END %] \
1824
	[% IF ( f3z ) %] \
1825
		<option value="z" selected="selected">z Annet</option> \
1826
		[% ELSE %] \
1827
		<option value="z">z Annet</option> \
1828
		[% END %] \
1829
                            </select> \
1830
                           </td> \
1831
                          </tr> \
1832
 	                  <tr> \
1833
                           <td><label for="f4">04 Filmens visningsformat </label></td> \
1834
                           <td> \
1835
                            <select name="f4" id="f4"> \
1836
	[% IF ( f4 ) %] \
1837
		<option value=" " selected="selected">^ Ikke angitt</option> \
1838
		[% ELSE %] \
1839
		<option value=" ">^ Ikke angitt</option> \
1840
		[% END %] \
1841
	[% IF ( f4a ) %] \
1842
		<option value="a" selected="selected">a Standard lydfilm (35 mm, 16 mm, super 8 mm)</option> \
1843
		[% ELSE %] \
1844
		<option value="a">a Standard lydfilm (35 mm, 16 mm, super 8 mm)</option> \
1845
		[% END %] \
1846
	[% IF ( f4b ) %] \
1847
		<option value="b" selected="selected">b Bredlerret</option> \
1848
		[% ELSE %] \
1849
		<option value="b">b Bredlerret</option> \
1850
		[% END %] \
1851
	[% IF ( f4c ) %] \
1852
		<option value="c" selected="selected">c Tredimensjonal (3D)</option> \
1853
		[% ELSE %] \
1854
		<option value="c">c Tredimensjonal (3D)</option> \
1855
		[% END %] \
1856
	[% IF ( f4f ) %] \
1857
		<option value="f" selected="selected">f Standard stumfilm</option> \
1858
		[% ELSE %] \
1859
		<option value="f">f Standard stumfilm</option> \
1860
		[% END %] \
1861
	[% IF ( f4u ) %] \
1862
		<option value="u" selected="selected">u Ukjent format</option> \
1863
		[% ELSE %] \
1864
		<option value="u">u Ukjent format</option> \
1865
		[% END %] \
1866
	[% IF ( f4z ) %] \
1867
		<option value="z" selected="selected">z Andre visningsformater</option> \
1868
		[% ELSE %] \
1869
		<option value="z">z Andre visningsformater</option> \
1870
		[% END %] \
1871
                            </select> \
1872
                           </td> \
1873
                          </tr> \
1874
 	                  <tr> \
1875
                           <td><label for="f5">05 Lyd som del av filmen eller separat</label></td> \
1876
                           <td> \
1877
                            <select name="f5" id="f5"> \
1878
	[% IF ( f5 ) %] \
1879
		<option value=" " selected="selected">^ Ikke angitt</option> \
1880
		[% ELSE %] \
1881
		<option value=" ">^ Ikke angitt</option> \
1882
		[% END %] \
1883
	[% IF ( f5a ) %] \
1884
		<option value="a" selected="selected">a Lydspor på filmen</option> \
1885
		[% ELSE %] \
1886
		<option value="a">a Lydspor på filmen</option> \
1887
		[% END %] \
1888
	[% IF ( f5b ) %] \
1889
		<option value="b" selected="selected">b Lyd på separat materiale</option> \
1890
		[% ELSE %] \
1891
		<option value="b">b Lyd på separat materiale</option> \
1892
		[% END %] \
1893
	[% IF ( f5i ) %] \
1894
		<option value="i" selected="selected">i Ingen lyd</option> \
1895
		[% ELSE %] \
1896
		<option value="i">i Ingen lyd</option> \
1897
		[% END %] \
1898
	[% IF ( f5u ) %] \
1899
		<option value="u" selected="selected">u Ukjent</option> \
1900
		[% ELSE %] \
1901
		<option value="u">u Ukjent</option> \
1902
		[% END %] \
1903
                            </select> \
1904
                           </td> \
1905
                          </tr> \
1906
 	                  <tr> \
1907
                           <td><label for="f6">06 Lydmateriale</label></td> \
1908
                           <td> \
1909
                            <select name="f6" id="f6"> \
1910
 	[% IF ( f6 ) %] \
1911
		<option value=" " selected="selected">^ Ikke angitt</option> \
1912
		[% ELSE %] \
1913
		<option value=" ">^ Ikke angitt</option> \
1914
		[% END %] \
1915
	[% IF ( f6a ) %] \
1916
		<option value="a" selected="selected">a Optisk lydspor på filmen</option> \
1917
		[% ELSE %] \
1918
		<option value="a">a Optisk lydspor på filmen</option> \
1919
		[% END %] \
1920
	[% IF ( f6b ) %] \
1921
		<option value="b" selected="selected">b Magnetisk lydspor på filmen</option> \
1922
		[% ELSE %] \
1923
		<option value="b">b Magnetisk lydspor på filmen</option> \
1924
		[% END %] \
1925
	[% IF ( f6d ) %] \
1926
		<option value="d" selected="selected">d Lydplate (grammofon- eller kompaktplate)</option> \
1927
		[% ELSE %] \
1928
		<option value="d">d Lydplate (grammofon- eller kompaktplate)</option> \
1929
		[% END %] \
1930
	[% IF ( f6e ) %] \
1931
		<option value="e" selected="selected">e Magnetisk lydbånd på spole</option> \
1932
		[% ELSE %] \
1933
		<option value="e">e Magnetisk lydbånd på spole</option> \
1934
		[% END %] \
1935
	[% IF ( f6f ) %] \
1936
		<option value="f" selected="selected">f Magnetisk lydbånd i kassett</option> \
1937
		[% ELSE %] \
1938
		<option value="f">f Magnetisk lydbånd i kassett</option> \
1939
		[% END %] \
1940
	[% IF ( f6g ) %] \
1941
		<option value="g" selected="selected">g Både optisk og magnetisk lydspor på filmen</option> \
1942
		[% ELSE %] \
1943
		<option value="g">g Både optisk og magnetisk lydspor på filmen</option> \
1944
		[% END %] \
1945
	[% IF ( f6s ) %] \
1946
		<option value="s" selected="selected">s Ingen lyd (stumfilm)</option> \
1947
		[% ELSE %] \
1948
		<option value="s">s Ingen lyd (stumfilm)</option> \
1949
		[% END %] \
1950
	[% IF ( f6u ) %] \
1951
		<option value="u" selected="selected">u Ukjent</option> \
1952
		[% ELSE %] \
1953
		<option value="u">u Ukjent</option> \
1954
		[% END %] \
1955
	[% IF ( f6z ) %] \
1956
		<option value="z" selected="selected">z Annet lydmateriale</option> \
1957
		[% ELSE %] \
1958
		<option value="z">z Annet lydmateriale</option> \
1959
		[% END %] \
1960
                            </select> \
1961
                           </td> \
1962
                          </tr> \
1963
 	                  <tr> \
1964
                           <td><label for="f7">07 Formater (bredde)</label></td> \
1965
                           <td> \
1966
                            <select name="f7" id="f7"> \
1967
	[% IF ( f7 ) %] \
1968
		<option value=" " selected="selected">^ Ikke angitt</option> \
1969
		[% ELSE %] \
1970
		<option value=" ">^ Ikke angitt</option> \
1971
		[% END %] \
1972
	[% IF ( f7a ) %] \
1973
		<option value="a" selected="selected">a Standard 8 mm</option> \
1974
		[% ELSE %] \
1975
		<option value="a">a Standard 8 mm</option> \
1976
		[% END %] \
1977
	[% IF ( f7b ) %] \
1978
		<option value="b" selected="selected">b Super 8 mm</option> \
1979
		[% ELSE %] \
1980
		<option value="b">b Super 8 mm</option> \
1981
		[% END %] \
1982
	[% IF ( f7c ) %] \
1983
		<option value="c" selected="selected">c 9,5 mm</option> \
1984
		[% ELSE %] \
1985
		<option value="c">c 9,5 mm</option> \
1986
		[% END %] \
1987
	[% IF ( f7d ) %] \
1988
		<option value="d" selected="selected">d 16 mm</option> \
1989
		[% ELSE %] \
1990
		<option value="d">d 16 mm</option> \
1991
		[% END %] \
1992
	[% IF ( f7e ) %] \
1993
		<option value="e" selected="selected">e 28 mm</option> \
1994
		[% ELSE %] \
1995
		<option value="e">e 28 mm</option> \
1996
		[% END %] \
1997
	[% IF ( f7f ) %] \
1998
		<option value="f" selected="selected">f 35 mm</option> \
1999
		[% ELSE %] \
2000
		<option value="f">f 35 mm</option> \
2001
		[% END %] \
2002
	[% IF ( f7g ) %] \
2003
		<option value="g" selected="selected">g 70 mm</option> \
2004
		[% ELSE %] \
2005
		<option value="g">g 70 mm</option> \
2006
		[% END %] \
2007
	[% IF ( f7u ) %] \
2008
		<option value="u" selected="selected">u Ukjent</option> \
2009
		[% ELSE %] \
2010
		<option value="u">u Ukjent</option> \
2011
		[% END %] \
2012
	[% IF ( f7z ) %] \
2013
		<option value="z" selected="selected">z Annet</option> \
2014
		[% ELSE %] \
2015
		<option value="z">z Annet</option> \
2016
		[% END %] \
2017
                            </select> \
2018
                           </td> \
2019
                          </tr> \
2020
 	                  <tr> \
2021
                           <td><label for="f8">08 Type avspillingskanaler for lyden</label></td> \
2022
                           <td> \
2023
                            <select name="f8" id="f8"> \
2024
	[% IF ( f8 ) %] \
2025
		<option value=" " selected="selected">^ Ikke angitt</option> \
2026
		[% ELSE %] \
2027
		<option value=" ">^ Ikke angitt</option> \
2028
		[% END %] \
2029
	[% IF ( f8k ) %] \
2030
		<option value="k" selected="selected">k Blandet - mer enn én tilgjengelig på samme film.</option> \
2031
		[% ELSE %] \
2032
		<option value="k">k Blandet - mer enn én tilgjengelig på samme film.</option> \
2033
		[% END %] \
2034
	[% IF ( f8m ) %] \
2035
		<option value="m" selected="selected">m Mono</option> \
2036
		[% ELSE %] \
2037
		<option value="m">m Mono</option> \
2038
		[% END %] \
2039
	[% IF ( f8n ) %] \
2040
		<option value="n" selected="selected">n Kode for type avspillingskanal ikke relevant</option> \
2041
		[% ELSE %] \
2042
		<option value="n">n Kode for type avspillingskanal ikke relevant</option> \
2043
		[% END %] \
2044
	[% IF ( f8q ) %] \
2045
		<option value="q" selected="selected">q Kvadrofonisk, multikanal, surround</option> \
2046
		[% ELSE %] \
2047
		<option value="q">q Kvadrofonisk, multikanal, surround</option> \
2048
		[% END %] \
2049
	[% IF ( f8s ) %] \
2050
		<option value="s" selected="selected">s Stereofonisk</option> \
2051
		[% ELSE %] \
2052
		<option value="s">s Stereofonisk</option> \
2053
		[% END %] \
2054
	[% IF ( f8u ) %] \
2055
		<option value="u" selected="selected">u Ukjent</option> \
2056
		[% ELSE %] \
2057
		<option value="u">u Ukjent</option> \
2058
		[% END %] \
2059
	[% IF ( f8z ) %] \
2060
		<option value="z" selected="selected">z Annet</option> \
2061
		[% ELSE %] \
2062
		<option value="z">z Annet</option> \
2063
		[% END %] \
2064
                            </select> \
2065
                           </td> \
2066
                          </tr> \
2067
 	                  <tr> \
2068
                           <td><label for="f9">09 Produksjonselementer</label></td> \
2069
                           <td> \
2070
                            <select name="f9" id="f9"> \
2071
	[% IF ( f9 ) %] \
2072
		<option value=" " selected="selected">^ Ikke angitt</option> \
2073
		[% ELSE %] \
2074
		<option value=" ">^ Ikke angitt</option> \
2075
		[% END %] \
2076
	[% IF ( f9a ) %] \
2077
		<option value="a" selected="selected">a Arbeidskopi</option> \
2078
		[% ELSE %] \
2079
		<option value="a">a Arbeidskopi</option> \
2080
		[% END %] \
2081
	[% IF ( f9b ) %] \
2082
		<option value="b" selected="selected">b Opptak forkastet under redigering av filmen</option> \
2083
		[% ELSE %] \
2084
		<option value="b">b Opptak forkastet under redigering av filmen</option> \
2085
		[% END %] \
2086
	[% IF ( f9e ) %] \
2087
		<option value="e" selected="selected">e Mikse-spor</option> \
2088
		[% ELSE %] \
2089
		<option value="e">e Mikse-spor</option> \
2090
		[% END %] \
2091
	[% IF ( f9f ) %] \
2092
		<option value="f" selected="selected">f Tekstbånd, mellomtekst-ruller</option> \
2093
		[% ELSE %] \
2094
		<option value="f">f Tekstbånd, mellomtekst-ruller</option> \
2095
		[% END %] \
2096
	[% IF ( f9n ) %] \
2097
		<option value="n" selected="selected">n Kode for produksjonselement ikke relevant</option> \
2098
		[% ELSE %] \
2099
		<option value="n">n Kode for produksjonselement ikke relevant</option> \
2100
		[% END %] \
2101
	[% IF ( f9z ) %] \
2102
		<option value="z" selected="selected">z Andre produksjonselementer</option> \
2103
		[% ELSE %] \
2104
		<option value="z">z Andre produksjonselementer</option> \
2105
		[% END %] \
2106
                            </select> \
2107
                           </td> \
2108
                          </tr> \
2109
 	                  <tr> \
2110
                           <td><label for="f10">10 Positiv/negativ</label></td> \
2111
                           <td> \
2112
                            <select name="f10" id="f10"> \
2113
	[% IF ( f10 ) %] \
2114
		<option value=" " selected="selected">^ Ikke angitt</option> \
2115
		[% ELSE %] \
2116
		<option value=" ">^ Ikke angitt</option> \
2117
		[% END %] \
2118
	[% IF ( f10a ) %] \
2119
		<option value="a" selected="selected">a Positiv</option> \
2120
		[% ELSE %] \
2121
		<option value="a">a Positiv</option> \
2122
		[% END %] \
2123
	[% IF ( f10b ) %] \
2124
		<option value="b" selected="selected">b Negativ</option> \
2125
		[% ELSE %] \
2126
		<option value="b">b Negativ</option> \
2127
		[% END %] \
2128
	[% IF ( f10n ) %] \
2129
		<option value="n" selected="selected">n Kode for positiv/negativ ikke relevant</option> \
2130
		[% ELSE %] \
2131
		<option value="n">n Kode for positiv/negativ ikke relevant</option> \
2132
		[% END %] \
2133
	[% IF ( f10u ) %] \
2134
		<option value="u" selected="selected">u Ukjent</option> \
2135
		[% ELSE %] \
2136
		<option value="u">u Ukjent</option> \
2137
		[% END %] \
2138
	[% IF ( f10z ) %] \
2139
		<option value="z" selected="selected">z Annen polaritet</option> \
2140
		[% ELSE %] \
2141
		<option value="z">z Annen polaritet</option> \
2142
		[% END %] \
2143
                            </select> \
2144
                           </td> \
2145
                          </tr> \
2146
 	                  <tr> \
2147
                           <td><label for="f11">11 Kopigenerasjon</label></td> \
2148
                           <td> \
2149
                            <select name="f11" id="f11"> \
2150
	[% IF ( f11 ) %] \
2151
		<option value=" " selected="selected">^ Ikke angitt</option> \
2152
		[% ELSE %] \
2153
		<option value=" ">^ Ikke angitt</option> \
2154
		[% END %] \
2155
	[% IF ( f11d ) %] \
2156
		<option value="d" selected="selected">d Duplikat, vanligvis negativ</option> \
2157
		[% ELSE %] \
2158
		<option value="d">d Duplikat, vanligvis negativ</option> \
2159
		[% END %] \
2160
	[% IF ( f11e ) %] \
2161
		<option value="e" selected="selected">e Master, vanligvis positiv</option> \
2162
		[% ELSE %] \
2163
		<option value="e">e Master, vanligvis positiv</option> \
2164
		[% END %] \
2165
	[% IF ( f11o ) %] \
2166
		<option value="o" selected="selected">o Original, vanligvis negativ</option> \
2167
		[% ELSE %] \
2168
		<option value="o">o Original, vanligvis negativ</option> \
2169
		[% END %] \
2170
	[% IF ( f11r ) %] \
2171
		<option value="r" selected="selected">r Referanse-/visningskopi</option> \
2172
		[% ELSE %] \
2173
		<option value="r">r Referanse-/visningskopi</option> \
2174
		[% END %] \
2175
	[% IF ( f11u ) %] \
2176
		<option value="u" selected="selected">u Ukjent</option> \
2177
		[% ELSE %] \
2178
		<option value="u">u Ukjent</option> \
2179
		[% END %] \
2180
	[% IF ( f11z ) %] \
2181
		<option value="z" selected="selected">z Andre generasjoner</option> \
2182
		[% ELSE %] \
2183
		<option value="z">z Andre generasjoner</option> \
2184
		[% END %] \
2185
                            </select> \
2186
                           </td> \
2187
                          </tr> \
2188
                          <tr> \
2189
                           <td><label for="f12">12 RÃ¥film</label></td> \
2190
                            <td> \
2191
                             <select id="f12" name="f12"> \
2192
	[% IF ( f12 ) %] \
2193
		<option value=" " selected="selected">^ Ikke angitt</option> \
2194
		[% ELSE %] \
2195
		<option value=" ">^ Ikke angitt</option> \
2196
		[% END %] \
2197
	[% IF ( f12d ) %] \
2198
		<option value="d" selected="selected">d Sikkerhetsfilm (diacetat)</option> \
2199
		[% ELSE %] \
2200
		<option value="d">d Sikkerhetsfilm (diacetat)</option> \
2201
		[% END %] \
2202
	[% IF ( f12i ) %] \
2203
		<option value="i" selected="selected">i Nitrat</option> \
2204
		[% ELSE %] \
2205
		<option value="i">i Nitrat</option> \
2206
		[% END %] \
2207
	[% IF ( f12m ) %] \
2208
		<option value="m" selected="selected">m Blandet (nitrat og sikkerhetsfilm)</option> \
2209
		[% ELSE %] \
2210
		<option value="m">m Blandet (nitrat og sikkerhetsfilm)</option> \
2211
		[% END %] \
2212
	[% IF ( f12p ) %] \
2213
		<option value="p" selected="selected">p Polyester (syntetisk)</option> \
2214
		[% ELSE %] \
2215
		<option value="p">p Polyester (syntetisk)</option> \
2216
		[% END %] \
2217
	[% IF ( f12t ) %] \
2218
		<option value="t" selected="selected">t Sikkerhetsfilm (triacetat)</option> \
2219
		[% ELSE %] \
2220
		<option value="t">t Sikkerhetsfilm (triacetat)</option> \
2221
		[% END %] \
2222
	[% IF ( f12u ) %] \
2223
		<option value="u" selected="selected">u Ukjent</option> \
2224
		[% ELSE %] \
2225
		<option value="u">u Ukjent</option> \
2226
		[% END %] \
2227
	[% IF ( f12z ) %] \
2228
		<option value="z" selected="selected">z Annet</option> \
2229
		[% ELSE %] \
2230
		<option value="z">z Annet</option> \
2231
		[% END %] \
2232
                             </select> \
2233
                            </td> \
2234
                           </td> \
2235
                          <tr> \
2236
                           <td><label for="f13">13 Detaljerte fargekarakteristikker</label></td> \
2237
                            <td> \
2238
                             <input type="hidden" name="f13" id="f13" size="1" value=" " /> Koder er ikke definert \
2239
                            </td> \
2240
                           </td> \
2241
 	                  <tr> \
2242
                           <td><label for="f14">14 Fargesystem i råfilm eller kopi</label></td> \
2243
                           <td> \
2244
                            <input type="hidden" name="f14" id="f14" size="1" value=" " /> Koder er ikke definert \
2245
                           </td> \
2246
                          </tr> \
2247
                           <td><label for="f15">15 Forfalls-stadium</label></td> \
2248
                           <td> \
2249
                            <select name="f15" id="f15"> \
2250
	[% IF ( f15 ) %] \
2251
		<option value=" " selected="selected">^ Ikke angitt</option> \
2252
		[% ELSE %] \
2253
		<option value=" ">^ Ikke angitt</option> \
2254
		[% END %] \
2255
	[% IF ( f15a ) %] \
2256
		<option value="a" selected="selected">a Intet synlig forfall</option> \
2257
		[% ELSE %] \
2258
		<option value="a">a Intet synlig forfall</option> \
2259
		[% END %] \
2260
	[% IF ( f15b ) %] \
2261
		<option value="b" selected="selected">b Nitrat: mistenkelig lukt</option> \
2262
		[% ELSE %] \
2263
		<option value="b">b Nitrat: mistenkelig lukt</option> \
2264
		[% END %] \
2265
	[% IF ( f15c ) %] \
2266
		<option value="c" selected="selected">c Nitrat: stikkende lukt</option> \
2267
		[% ELSE %] \
2268
		<option value="c">c Nitrat: stikkende lukt</option> \
2269
		[% END %] \
2270
	[% IF ( f15d ) %] \
2271
		<option value="d" selected="selected">d Nitrat: brunlig, misfarget, uskarp, støvet</option> \
2272
		[% ELSE %] \
2273
		<option value="d">d Nitrat: brunlig, misfarget, uskarp, støvet</option> \
2274
		[% END %] \
2275
	[% IF ( f15e ) %] \
2276
		<option value="e" selected="selected">e Nitrat: klebrig</option> \
2277
		[% ELSE %] \
2278
		<option value="e">e Nitrat: klebrig</option> \
2279
		[% END %] \
2280
	[% IF ( f15f ) %] \
2281
		<option value="f" selected="selected">f Nitrat: skummende, bobler, blemmer</option> \
2282
		[% ELSE %] \
2283
		<option value="f">f Nitrat: skummende, bobler, blemmer</option> \
2284
		[% END %] \
2285
	[% IF ( f15g ) %] \
2286
		<option value="g" selected="selected">g Nitrat: stivnet</option> \
2287
		[% ELSE %] \
2288
		<option value="g">g Nitrat: stivnet</option> \
2289
		[% END %] \
2290
	[% IF ( f15h ) %] \
2291
		<option value="h" selected="selected">h Nitrat: pulver</option> \
2292
		[% ELSE %] \
2293
		<option value="h">h Nitrat: pulver</option> \
2294
		[% END %] \
2295
	[% IF ( f15k ) %] \
2296
		<option value="k" selected="selected">k Ikke-nitrat: merkbart forfall (diacetat-lukt)</option> \
2297
		[% ELSE %] \
2298
		<option value="k">k Ikke-nitrat: merkbart forfall (diacetat-lukt)</option> \
2299
		[% END %] \
2300
	[% IF ( f15l ) %] \
2301
		<option value="l" selected="selected">l Ikke-nitrat: langtkommet forfall</option> \
2302
		[% ELSE %] \
2303
		<option value="l">l Ikke-nitrat: langtkommet forfall</option> \
2304
		[% END %] \
2305
	[% IF ( f15m ) %] \
2306
		<option value="m" selected="selected">m Ikke-nitrat: katastrofe</option> \
2307
		[% ELSE %] \
2308
		<option value="m">m Ikke-nitrat: katastrofe</option> \
2309
		[% END %] \
2310
                            </select> \
2311
                           </td> \
2312
                          </tr> \
2313
                           <td><label for="f16">16 Fullstendighet</label></td> \
2314
                           <td> \
2315
                            <select name="f16" id="f16"> \
2316
	[% IF ( f16 ) %] \
2317
		<option value=" " selected="selected">^ Ikke angitt</option> \
2318
		[% ELSE %] \
2319
		<option value=" ">^ Ikke angitt</option> \
2320
		[% END %] \
2321
	[% IF ( f16c ) %] \
2322
		<option value="c" selected="selected">c Fullstendig, komplett</option> \
2323
		[% ELSE %] \
2324
		<option value="c">c Fullstendig, komplett</option> \
2325
		[% END %] \
2326
	[% IF ( f16i ) %] \
2327
		<option value="i" selected="selected">i Ufullstendig, ikke komplett</option> \
2328
		[% ELSE %] \
2329
		<option value="i">i Ufullstendig, ikke komplett</option> \
2330
		[% END %] \
2331
	[% IF ( f16n ) %] \
2332
		<option value="n" selected="selected">n Kode for fullstendighet ikke relevant</option> \
2333
		[% ELSE %] \
2334
		<option value="n">n Kode for fullstendighet ikke relevant</option> \
2335
		[% END %] \
2336
	[% IF ( f16u ) %] \
2337
		<option value="u" selected="selected">u Ukjent</option> \
2338
		[% ELSE %] \
2339
		<option value="u">u Ukjent</option> \
2340
		[% END %] \
2341
                            </select> \
2342
                           </td> \
2343
                          </tr> \
2344
                          <tr> \
2345
                           <td><label for="f17">17-22 Dato for siste inspeksjon av filmen</label><br /><I>(Registreres med 6 siffer i formen ååååmm. Hvis deler av datoen ikke er kjent, erstattes hvert ukjent siffer med en strek (-).)</i></td> \
2346
				<td><input type="text" size=6 name="f17" id = "f17" value="[% f17 | html %][% f18 | html %][% f19 | html %][% f20 | html %][% f21 | html %][% f22 | html %]"> Dato</input> \
2347
                            </td> \
2348
                           </td> \
2349
                        </table>';  
2350
    break;
2351
  case "s":
2352
    divOutput.innerHTML='<table> \
2353
                          <tr> \
2354
                           <td>00 Type materiale</td> \
2355
                           <td>s Lydopptak</td> \
2356
                          </tr> \
2357
 	                  <tr> \
2358
                           <td><label for="f1">01 Spesielle materialbetegnelser</label></td> \
2359
                           <td> \
2360
                            <select name="f1" id="f1"> \
2361
	[% IF ( f1 ) %] \
2362
		<option value=" " selected="selected">^ Ikke angitt</option> \
2363
		[% ELSE %] \
2364
		<option value=" ">^ Ikke angitt</option> \
2365
		[% END %] \
2366
	[% IF ( f1c ) %] \
2367
		<option value="c" selected="selected">c Kompaktplate</option> \
2368
		[% ELSE %] \
2369
		<option value="c">c Kompaktplate</option> \
2370
		[% END %] \
2371
	[% IF ( f1d ) %] \
2372
		<option value="d" selected="selected">d Grammofonplate</option> \
2373
		[% ELSE %] \
2374
		<option value="d">d Grammofonplate</option> \
2375
		[% END %] \
2376
	[% IF ( f1e ) %] \
2377
		<option value="e" selected="selected">e Sylinder</option> \
2378
		[% ELSE %] \
2379
		<option value="e">e Sylinder</option> \
2380
		[% END %] \
2381
	[% IF ( f1g ) %] \
2382
		<option value="g" selected="selected">g Sløyfekassett</option> \
2383
		[% ELSE %] \
2384
		<option value="g">g Sløyfekassett</option> \
2385
		[% END %] \
2386
	[% IF ( f1i ) %] \
2387
		<option value="i" selected="selected">i Filmlydspor</option> \
2388
		[% ELSE %] \
2389
		<option value="i">i Filmlydspor</option> \
2390
		[% END %] \
2391
	[% IF ( f1q ) %] \
2392
		<option value="q" selected="selected">q Rull (pianorull/orgelrull)</option> \
2393
		[% ELSE %] \
2394
		<option value="q">q Rull (pianorull/orgelrull)</option> \
2395
		[% END %] \
2396
	[% IF ( f1s ) %] \
2397
		<option value="s" selected="selected">s Lydkassett</option> \
2398
		[% ELSE %] \
2399
		<option value="s">s Lydkassett</option> \
2400
		[% END %] \
2401
	[% IF ( f1t ) %] \
2402
		<option value="t" selected="selected">t Lydbånd</option> \
2403
		[% ELSE %] \
2404
		<option value="t">t Lydbånd</option> \
2405
		[% END %] \
2406
	[% IF ( f1w ) %] \
2407
		<option value="w" selected="selected">w Wire</option> \
2408
		[% ELSE %] \
2409
		<option value="w">w Wire</option> \
2410
		[% END %] \
2411
	[% IF ( f1z ) %] \
2412
		<option value="z" selected="selected">z Annet lydmateriale</option> \
2413
		[% ELSE %] \
2414
		<option value="z">z Annet lydmateriale</option> \
2415
		[% END %] \
2416
                            </select> \
2417
                           </td> \
2418
                          </tr> \
2419
                        </table>';  
2420
    break;
2421
  case "u":
2422
    divOutput.innerHTML='<table> \
2423
                          <tr> \
2424
                           <td>00 Type materiale</td> \
2425
                           <td>s Tredimensjonal gjenstand</td> \
2426
                          </tr> \
2427
 	                  <tr> \
2428
                           <td><label for="f1">01 Spesielle materialbetegnelser</label></td> \
2429
                           <td> \
2430
                            <select name="f1" id="f1"> \
2431
	[% IF ( f1 ) %] \
2432
		<option value=" " selected="selected">^ Ikke angitt</option> \
2433
		[% ELSE %] \
2434
		<option value=" ">^ Ikke angitt</option> \
2435
		[% END %] \
2436
	[% IF ( f1a ) %] \
2437
		<option value="a" selected="selected">a Originalt kunstverk</option> \
2438
		[% ELSE %] \
2439
		<option value="a">a Originalt kunstverk</option> \
2440
		[% END %] \
2441
	[% IF ( f1c ) %] \
2442
		<option value="c" selected="selected">c Kunstreproduksjon</option> \
2443
		[% ELSE %] \
2444
		<option value="c">c Kunstreproduksjon</option> \
2445
		[% END %] \
2446
	[% IF ( f1d ) %] \
2447
		<option value="d" selected="selected">d Diorama</option> \
2448
		[% ELSE %] \
2449
		<option value="d">d Diorama</option> \
2450
		[% END %] \
2451
	[% IF ( f1e ) %] \
2452
		<option value="e" selected="selected">e Øvelsesmodell</option> \
2453
		[% ELSE %] \
2454
		<option value="e">e Øvelsesmodell</option> \
2455
		[% END %] \
2456
	[% IF ( f1g ) %] \
2457
		<option value="g" selected="selected">g Spill</option> \
2458
		[% ELSE %] \
2459
		<option value="g">g Spill</option> \
2460
		[% END %] \
2461
	[% IF ( f1p ) %] \
2462
		<option value="p" selected="selected">p Mikroskopdia</option> \
2463
		[% ELSE %] \
2464
		<option value="p">p Mikroskopdia</option> \
2465
		[% END %] \
2466
	[% IF ( f1q ) %] \
2467
		<option value="q" selected="selected">q Modell</option> \
2468
		[% ELSE %] \
2469
		<option value="q">q Modell</option> \
2470
		[% END %] \
2471
	[% IF ( f1r ) %] \
2472
		<option value="r" selected="selected">r Realia</option> \
2473
		[% ELSE %] \
2474
		<option value="r">r Realia</option> \
2475
		[% END %] \
2476
	[% IF ( f1u ) %] \
2477
		<option value="u" selected="selected">u Utstilling</option> \
2478
		[% ELSE %] \
2479
		<option value="u">u Utstilling</option> \
2480
		[% END %] \
2481
	[% IF ( f1z ) %] \
2482
		<option value="z" selected="selected">z Annen type gjenstand</option> \
2483
		[% ELSE %] \
2484
		<option value="z">z Annen type gjenstand</option> \
2485
		[% END %] \
2486
                            </select> \
2487
                           </td> \
2488
                          </tr> \
2489
                        </table>';  
2490
    break;
2491
  case "v":
2492
    divOutput.innerHTML='<table> \
2493
                          <tr> \
2494
                           <td>00 Type materiale</td> \
2495
                           <td>v Videoopptak</td> \
2496
                          </tr> \
2497
 	                  <tr> \
2498
                           <td><label for="f1">01 Spesielle materialbetegnelser </label></td> \
2499
                           <td> \
2500
                            <select name="f1" id="f1"> \
2501
	[% IF ( f1 ) %] \
2502
		<option value=" " selected="selected">^ Ikke angitt</option> \
2503
		[% ELSE %] \
2504
		<option value=" ">^ Ikke angitt</option> \
2505
		[% END %] \
2506
	[% IF ( f1d ) %] \
2507
		<option value="d" selected="selected">d Videoplate</option> \
2508
		[% ELSE %] \
2509
		<option value="d">d Videoplate</option> \
2510
		[% END %] \
2511
	[% IF ( f1f ) %] \
2512
		<option value="f" selected="selected">f Videokassett</option> \
2513
		[% ELSE %] \
2514
		<option value="f">f Videokassett</option> \
2515
		[% END %] \
2516
	[% IF ( f1r ) %] \
2517
		<option value="r" selected="selected">r Videospole</option> \
2518
		[% ELSE %] \
2519
		<option value="r">r Videospole</option> \
2520
		[% END %] \
2521
	[% IF ( f1z ) %] \
2522
		<option value="z" selected="selected">z Annen type videoopptak</option> \
2523
		[% ELSE %] \
2524
		<option value="z">z Annen type videoopptak</option> \
2525
		[% END %] \
2526
                            </select> \
2527
                           </td> \
2528
                          </tr> \
2529
 	                  <tr> \
2530
                           <td><label for="f2">02 Undefined</label></td> \
2531
                           <td> \
2532
                            <input type="hidden" name="f2" id="f2" size="1" value=" " /> \
2533
                           </td> \
2534
                          </tr> \
2535
 	                  <tr> \
2536
                           <td><label for="f3">03 Farge</label></td> \
2537
                           <td> \
2538
                            <select name="f3" id="f3"> \
2539
	[% IF ( f3 ) %] \
2540
		<option value=" " selected="selected">^ Ikke angitt</option> \
2541
		[% ELSE %] \
2542
		<option value=" ">^ Ikke angitt</option> \
2543
		[% END %] \
2544
	[% IF ( f3b ) %] \
2545
		<option value="b" selected="selected">b Svart-hvitt</option> \
2546
		[% ELSE %] \
2547
		<option value="b">b Svart-hvitt</option> \
2548
		[% END %] \
2549
	[% IF ( f3c ) %] \
2550
		<option value="c" selected="selected">c Farger</option> \
2551
		[% ELSE %] \
2552
		<option value="c">c Farger</option> \
2553
		[% END %] \
2554
	[% IF ( f3m ) %] \
2555
		<option value="m" selected="selected">m Blandet</option> \
2556
		[% ELSE %] \
2557
		<option value="m">m Blandet</option> \
2558
		[% END %] \
2559
	[% IF ( f3n ) %] \
2560
		<option value="n" selected="selected">n Kode for farge ikke relevant</option> \
2561
		[% ELSE %] \
2562
		<option value="n">n Kode for farge ikke relevant</option> \
2563
		[% END %] \
2564
	[% IF ( f3u ) %] \
2565
		<option value="u" selected="selected">u Ukjent</option> \
2566
		[% ELSE %] \
2567
		<option value="u">u Ukjent</option> \
2568
		[% END %] \
2569
	[% IF ( f3z ) %] \
2570
		<option value="z" selected="selected">z Annet</option> \
2571
		[% ELSE %] \
2572
		<option value="z">z Annet</option> \
2573
		[% END %] \
2574
                            </select> \
2575
                           </td> \
2576
                          </tr> \
2577
 	                  <tr> \
2578
                           <td><label for="f4">04 Videoopptak-system</label></td> \
2579
                           <td> \
2580
                            <select name="f4" id="f4"> \
2581
	[% IF ( f4 ) %] \
2582
		<option value=" " selected="selected">^ Ikke angitt</option> \
2583
		[% ELSE %] \
2584
		<option value=" ">^ Ikke angitt</option> \
2585
		[% END %] \
2586
	[% IF ( f4a ) %] \
2587
		<option value="a" selected="selected">a Betamax (1/2 tomme, videokassett)</option> \
2588
		[% ELSE %] \
2589
		<option value="a">a Betamax (1/2 tomme, videokassett)</option> \
2590
		[% END %] \
2591
	[% IF ( f4b ) %] \
2592
		<option value="b" selected="selected">b VHS (1/2 tomme, videokassett)</option> \
2593
		[% ELSE %] \
2594
		<option value="b">b VHS (1/2 tomme, videokassett)</option> \
2595
		[% END %] \
2596
	[% IF ( f4c ) %] \
2597
		<option value="c" selected="selected">c U-matic (3/4 tomme, videokassett)</option> \
2598
		[% ELSE %] \
2599
		<option value="c">c U-matic (3/4 tomme, videokassett)</option> \
2600
		[% END %] \
2601
	[% IF ( f4d ) %] \
2602
		<option value="d" selected="selected">d EIAJ (1/2 tomme, spole)</option> \
2603
		[% ELSE %] \
2604
		<option value="d">d EIAJ (1/2 tomme, spole)</option> \
2605
		[% END %] \
2606
	[% IF ( f4e ) %] \
2607
		<option value="e" selected="selected">e Type C (1 tomme, spole)</option> \
2608
		[% ELSE %] \
2609
		<option value="e">e Type C (1 tomme, spole)</option> \
2610
		[% END %] \
2611
	[% IF ( f4f ) %] \
2612
		<option value="f" selected="selected">f Quadruplex (1 tomme el. 2 tommer, spole)</option> \
2613
		[% ELSE %] \
2614
		<option value="f">f Quadruplex (1 tomme el. 2 tommer, spole)</option> \
2615
		[% END %] \
2616
	[% IF ( f4g ) %] \
2617
		<option value="g" selected="selected">g Laser-optisk (refleksiv) videoplate</option> \
2618
		[% ELSE %] \
2619
		<option value="g">g Laser-optisk (refleksiv) videoplate</option> \
2620
		[% END %] \
2621
	[% IF ( f4h ) %] \
2622
		<option value="h" selected="selected">h CED (Capacitance Electronic Disc) videoplate</option> \
2623
		[% ELSE %] \
2624
		<option value="h">h CED (Capacitance Electronic Disc) videoplate</option> \
2625
		[% END %] \
2626
	[% IF ( f4u ) %] \
2627
		<option value="u" selected="selected">u Ukjent</option> \
2628
		[% ELSE %] \
2629
		<option value="u">u Ukjent</option> \
2630
		[% END %] \
2631
	[% IF ( f4z ) %] \
2632
		<option value="z" selected="selected">z Annet</option> \
2633
		[% ELSE %] \
2634
		<option value="z">z Annet</option> \
2635
		[% END %] \
2636
                            </select> \
2637
                           </td> \
2638
                          </tr> \
2639
 	                  <tr> \
2640
                           <td><label for="f5">05 Lyd på videoopptaket eller separat </label></td> \
2641
                           <td> \
2642
                            <select name="f5" id="f5"> \
2643
	[% IF ( f5 ) %] \
2644
		<option value=" " selected="selected">^ Ikke angitt</option> \
2645
		[% ELSE %] \
2646
		<option value=" ">^ Ikke angitt</option> \
2647
		[% END %] \
2648
	[% IF ( f5a ) %] \
2649
		<option value="a" selected="selected">a Lyd som en fysisk del av videoopptaket</option> \
2650
		[% ELSE %] \
2651
		<option value="a">a Lyd som en fysisk del av videoopptaket</option> \
2652
		[% END %] \
2653
	[% IF ( f5b ) %] \
2654
		<option value="b" selected="selected">b Lyd på separat materiale</option> \
2655
		[% ELSE %] \
2656
		<option value="b">b Lyd på separat materiale</option> \
2657
		[% END %] \
2658
	[% IF ( f5i ) %] \
2659
		<option value="i" selected="selected">i Ingen lyd</option> \
2660
		[% ELSE %] \
2661
		<option value="i">i Ingen lyd</option> \
2662
		[% END %] \
2663
	[% IF ( f5u ) %] \
2664
		<option value="u" selected="selected">u Ukjent</option> \
2665
		[% ELSE %] \
2666
		<option value="u">u Ukjent</option> \
2667
		[% END %] \
2668
                            </select> \
2669
                           </td> \
2670
                          </tr> \
2671
 	                  <tr> \
2672
                           <td><label for="f6">06 Lydbærende materiale</label></td> \
2673
                           <td> \
2674
                            <select name="f6" id="f6"> \
2675
	[% IF ( f6 ) %] \
2676
		<option value=" " selected="selected">^ Ikke angitt</option> \
2677
		[% ELSE %] \
2678
		<option value=" ">^ Ikke angitt</option> \
2679
		[% END %] \
2680
	[% IF ( f6d ) %] \
2681
		<option value="d" selected="selected">d Lydplate (grammofon- eller kompaktplate)</option> \
2682
		[% ELSE %] \
2683
		<option value="d">d Lydplate (grammofon- eller kompaktplate)</option> \
2684
		[% END %] \
2685
	[% IF ( f6e ) %] \
2686
		<option value="e" selected="selected">e Magnetisk lydbånd på spole</option> \
2687
		[% ELSE %] \
2688
		<option value="e">e Magnetisk lydbånd på spole</option> \
2689
		[% END %] \
2690
	[% IF ( f6f ) %] \
2691
		<option value="f" selected="selected">f Magnetisk lydbånd i kassett</option> \
2692
		[% ELSE %] \
2693
		<option value="f">f Magnetisk lydbånd i kassett</option> \
2694
		[% END %] \
2695
	[% IF ( f6h ) %] \
2696
		<option value="h" selected="selected">h Videobånd</option> \
2697
		[% ELSE %] \
2698
		<option value="h">h Videobånd</option> \
2699
		[% END %] \
2700
	[% IF ( f6i ) %] \
2701
		<option value="i" selected="selected">i Videoplate</option> \
2702
		[% ELSE %] \
2703
		<option value="i">i Videoplate</option> \
2704
		[% END %] \
2705
	[% IF ( f6s ) %] \
2706
		<option value="s" selected="selected">s Ingen lyd</option> \
2707
		[% ELSE %] \
2708
		<option value="s">s Ingen lyd</option> \
2709
		[% END %] \
2710
	[% IF ( f6u ) %] \
2711
		<option value="u" selected="selected">u Ukjent</option> \
2712
		[% ELSE %] \
2713
		<option value="u">u Ukjent</option> \
2714
		[% END %] \
2715
	[% IF ( f6z ) %] \
2716
		<option value="z" selected="selected">z Annet lydmateriale</option> \
2717
		[% ELSE %] \
2718
		<option value="z">z Annet lydmateriale</option> \
2719
		[% END %] \
2720
                            </select> \
2721
                           </td> \
2722
                          </tr> \
2723
 	                  <tr> \
2724
                           <td><label for="f7">07 Formater (bredde)</label></td> \
2725
                           <td> \
2726
                            <select name="f7" id="f7"> \
2727
	[% IF ( f7 ) %] \
2728
		<option value=" " selected="selected">^ Ikke angitt</option> \
2729
		[% ELSE %] \
2730
		<option value=" ">^ Ikke angitt</option> \
2731
		[% END %] \
2732
	[% IF ( f7m ) %] \
2733
		<option value="m" selected="selected">m 1/4 tomme</option> \
2734
		[% ELSE %] \
2735
		<option value="m">m 1/4 tomme</option> \
2736
		[% END %] \
2737
	[% IF ( f7o ) %] \
2738
		<option value="o" selected="selected">o 1/2 tomme</option> \
2739
		[% ELSE %] \
2740
		<option value="o">o 1/2 tomme</option> \
2741
		[% END %] \
2742
	[% IF ( f7p ) %] \
2743
		<option value="p" selected="selected">p 1 tomme</option> \
2744
		[% ELSE %] \
2745
		<option value="p">p 1 tomme</option> \
2746
		[% END %] \
2747
	[% IF ( f7q ) %] \
2748
		<option value="q" selected="selected">q 2 tommer</option> \
2749
		[% ELSE %] \
2750
		<option value="q">q 2 tommer</option> \
2751
		[% END %] \
2752
	[% IF ( f7r ) %] \
2753
		<option value="r" selected="selected">r 3/4 tomme</option> \
2754
		[% ELSE %] \
2755
		<option value="r">r 3/4 tomme</option> \
2756
		[% END %] \
2757
	[% IF ( f7u ) %] \
2758
		<option value="u" selected="selected">u Ukjent</option> \
2759
		[% ELSE %] \
2760
		<option value="u">u Ukjent</option> \
2761
		[% END %] \
2762
	[% IF ( f7z ) %] \
2763
		<option value="z" selected="selected">z Annet</option> \
2764
		[% ELSE %] \
2765
		<option value="z">z Annet</option> \
2766
		[% END %] \
2767
                            </select> \
2768
                           </td> \
2769
                          </tr> \
2770
 	                  <tr> \
2771
                           <td><label for="f8">08 Type avspillingskanaler for lyden</label></td> \
2772
                           <td> \
2773
                            <select name="f8" id="f8"> \
2774
	[% IF ( f8 ) %] \
2775
		<option value=" " selected="selected">^ Ikke angitt</option> \
2776
		[% ELSE %] \
2777
		<option value=" ">^ Ikke angitt</option> \
2778
		[% END %] \
2779
	[% IF ( f8k ) %] \
2780
		<option value="k" selected="selected">k Blandet - mer enn én tilgjengelig på samme videoopptak</option> \
2781
		[% ELSE %] \
2782
		<option value="k">k Blandet - mer enn én tilgjengelig på samme videoopptak</option> \
2783
		[% END %] \
2784
	[% IF ( f8m ) %] \
2785
		<option value="m" selected="selected">m Mono</option> \
2786
		[% ELSE %] \
2787
		<option value="m">m Mono</option> \
2788
		[% END %] \
2789
	[% IF ( f8n ) %] \
2790
		<option value="n" selected="selected">n Kode for type avspillingskanal ikke relevant</option> \
2791
		[% ELSE %] \
2792
		<option value="n">n Kode for type avspillingskanal ikke relevant</option> \
2793
		[% END %] \
2794
	[% IF ( f8q ) %] \
2795
		<option value="q" selected="selected">q Kvadrofonisk, multikanal, surround</option> \
2796
		[% ELSE %] \
2797
		<option value="q">q Kvadrofonisk, multikanal, surround</option> \
2798
		[% END %] \
2799
	[% IF ( f8s ) %] \
2800
		<option value="s" selected="selected">s Stereofonisk</option> \
2801
		[% ELSE %] \
2802
		<option value="s">s Stereofonisk</option> \
2803
		[% END %] \
2804
	[% IF ( f8u ) %] \
2805
		<option value="u" selected="selected">u Ukjent</option> \
2806
		[% ELSE %] \
2807
		<option value="u">u Ukjent</option> \
2808
		[% END %] \
2809
	[% IF ( f8z ) %] \
2810
		<option value="z" selected="selected">z Annet</option> \
2811
		[% ELSE %] \
2812
		<option value="z">z Annet</option> \
2813
		[% END %] \
2814
                            </select> \
2815
                           </td> \
2816
                          </tr> \
2817
                        </table>';  
2818
    break;
2819
  default:
2820
    divOutput.innerHTML="baz";
2821
  }
2822
}
2823
//]]>
2824
</script>
2825
2826
[% INCLUDE 'popup-bottom.inc' %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/normarc_field_008.tt (-4520 lines)
Lines 1-4520 Link Here
1
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Feltbygger for 008 &rsaquo; Katalogisering &rsaquo; Koha</title>
3
[% INCLUDE 'doc-head-close.inc' %]
4
</head>
5
<body id="cat_normarc_field_008" class="cat" style="padding:1em;">
6
<h3>008 Informasjonskoder</h3>
7
8
<form>
9
      <p><select name="MatTypeList" id="MatTypeList" onchange="RedrawChoices(this.options[selectedIndex].value);">
10
11
			<option value="" selected="selected">Velg materialtype</option>			
12
	[% IF ( mon ) %] 
13
		<option value="mon" selected="selected">Monografier</option> 
14
		[% ELSE %] 
15
		<option value="mon">Monografier</option> 
16
		[% END %]
17
	[% IF ( per ) %] 
18
		<option value="per" selected="selected">Periodika</option> 
19
		[% ELSE %] 
20
		<option value="per">Periodika</option> 
21
		[% END %]
22
	[% IF ( fil ) %] 
23
		<option value="fil" selected="selected">Maskinlesbare filer</option> 
24
		[% ELSE %] 
25
		<option value="fil">Maskinlesbare filer</option> 
26
		[% END %]	
27
	[% IF ( mus ) %] 
28
		<option value="mus" selected="selected">Musikktrykk og lydopptak</option> 
29
		[% ELSE %] 
30
		<option value="mus">Musikktrykk og lydopptak</option> 
31
		[% END %]	
32
	[% IF ( fv ) %] 
33
		<option value="fv" selected="selected">Filmer og videogrammer</option> 
34
		[% ELSE %] 
35
		<option value="fv">Filmer og videogrammer</option> 
36
		[% END %]	
37
	[% IF ( kar ) %] 
38
		<option value="kar" selected="selected">Kart</option> 
39
		[% ELSE %] 
40
		<option value="kar">Kart</option> 
41
		[% END %]
42
		
43
      </select></p>
44
</form>
45
46
<form name="f_pop" onsubmit="report()">
47
<input type="hidden" name="plugin_name" value="normarc_field_008.pl" />
48
<table>
49
50
<hr />
51
52
<!-- Start first batch of common fields for all formats -->
53
<table>
54
55
	<tr>
56
		<td>00-05 Registreringsdato</td>
57
		<td><input type="text" name="f1" maxlength="6" size="7" value="[% f1 | html %]" /></td>
58
	</tr>
59
	<tr>
60
		<!-- 06 Type of date / Publication status -->
61
		<td><label for="f6">06 Dateringskode/Utgivelsesstatus</label></td>
62
		<td>
63
    <select name="f6" id="f6">
64
	[% IF ( f6 ) %]
65
		<option value=" " selected="selected">^ Ikke angitt</option>
66
		[% ELSE %]
67
		<option value=" ">^ Ikke angitt</option>
68
		[% END %]
69
	[% IF ( f6a ) %] 
70
		<option value="a" selected="selected">a Antatt/forventet utgivelsesår i pos. 7-10</option> 
71
		[% ELSE %] 
72
		<option value="a">a Antatt/forventet utgivelsesår i pos. 7-10</option> 
73
		[% END %] 
74
	[% IF ( f6c ) %] 
75
		<option value="c" selected="selected">c Utgivelsesår i pos. 7-10 og copyrightår i pos. 11-14</option> 
76
		[% ELSE %] 
77
		<option value="c">c Utgivelsesår i pos. 7-10 og copyrightår i pos. 11-14</option> 
78
		[% END %] 
79
	[% IF ( f6n ) %] 
80
		<option value="n" selected="selected">n Ukjent år</option> 
81
		[% ELSE %] 
82
		<option value="n">n Ukjent år</option> 
83
		[% END %] 
84
	[% IF ( f6o ) %] 
85
		<option value="o" selected="selected">o Opphørt (periodika)</option> 
86
		[% ELSE %] 
87
		<option value="o">o Opphørt (periodika)</option> 
88
		[% END %] 
89
	[% IF ( f6p ) %] 
90
		<option value="p" selected="selected">p Ã…r for distribusjon/frigivelse i pos. 7-10 og produksjons-/opptaksperiode i pos. 11-14</option> 
91
		[% ELSE %] 
92
		<option value="p">p Ã…r for distribusjon/frigivelse i pos. 7-10 og produksjons-/opptaksperiode i pos. 11-14</option> 
93
		[% END %] 
94
	[% IF ( f6r ) %] 
95
		<option value="r" selected="selected">r Nyutgaveår i pos. 7-10 og originalår i pos. 11-14</option> 
96
		[% ELSE %] 
97
		<option value="r">r Nyutgaveår i pos. 7-10 og originalår i pos. 11-14</option> 
98
		[% END %] 
99
	[% IF ( f6s ) %] 
100
		<option value="s" selected="selected">s Enkelt år (f.eks. utgivelsesår) i pos. 7-10</option> 
101
		[% ELSE %] 
102
		<option value="s">s Enkelt år (f.eks. utgivelsesår) i pos. 7-10</option> 
103
		[% END %] 
104
	[% IF ( f6u ) %] 
105
		<option value="u" selected="selected">u Ukjent status (periodika)</option> 
106
		[% ELSE %] 
107
		<option value="u">u Ukjent status (periodika)</option> 
108
		[% END %] 
109
	[% IF ( f6x ) %] 
110
		<option value="x" selected="selected">x Løpende (periodika)</option> 
111
		[% ELSE %] 
112
		<option value="x">x Løpende (periodika)</option> 
113
		[% END %] 	
114
			</select>
115
		</td>
116
	</tr>
117
	<tr>
118
		<td><label for="f710">07-10 Ã…rstall 1</label></td>
119
		<td>
120
			<input type="text" name="f710" id="f710" size="4" maxlength="4" value="[% f710 | html %]"/>
121
		</td>
122
	</tr>
123
	<tr>
124
    <td><label for="f1114">11-14 Ã…rstall 2</label></td>
125
    <td>
126
      <input type="text" name="f1114" id="f1114" size="4" maxlength="4" value="[% f1114 | html %]"/>
127
		</td>
128
  </tr>
129
130
	<tr>
131
      <td><label for="f1517">15-17 Utgivelsesland</label> (Se <a href="http://www.nb.no/baser/landekoder/">NORMARC-koder for land</a>)</td>
132
      <td>
133
              <input type="text" name="f1517" id="f1517" size="3"  maxlength="3" value="[% f1517 | html %]"/> <!-- Default is set by the DefaultLanguageField008 syspref -->
134
      </td>
135
        </tr>
136
				
137
<!-- End first batch of common fields for all formats -->
138
				
139
<tr><td id="choices" colspan="2"></td></tr>
140
141
<!-- Start second batch of common fields for all formats -->
142
       <tr>
143
                <td><label for="f3537">35-37 Språk</label> (Se <a href="http://www.nb.no/baser/sprakkoder/">NORMARC-koder for språk</a>)</td>
144
                <td>
145
                        <input type="text" name="f3537" id="f3537" size="4"  maxlength="4" value="[% f3537 | html %]"/>
146
                </td>
147
        </tr>
148
	<tr>
149
                <td><label for="f38">38 Udefinert</label></td>
150
                <td>
151
										<input type="hidden" name="f38" value=" " />                
152
                </td>
153
        </tr>
154
<tr>
155
                <td><label for="f39">39 Katalogiseringskilde</label></td>
156
                <td>
157
                <select name="f39" id="f39">
158
	[% IF ( f39 ) %]
159
		<option value=" " selected="selected">^ Ikke angitt</option>
160
		[% ELSE %]
161
		<option value=" ">^ Ikke angitt</option>
162
		[% END %]
163
	[% IF ( f390 ) %] 
164
		<option value="0" selected="selected">0 Norges nasjonalbibliografi, autorisert post</option> 
165
		[% ELSE %] 
166
		<option value="0">0 Norges nasjonalbibliografi, autorisert post</option> 
167
		[% END %] 
168
	[% IF ( f391 ) %] 
169
		<option value="1" selected="selected">1 Norges nasjonalbibliografi, uautorisert post</option> 
170
		[% ELSE %] 
171
		<option value="1">1 Norges nasjonalbibliografi, uautorisert post</option> 
172
		[% END %] 
173
	[% IF ( f392 ) %] 
174
		<option value="2" selected="selected">2 Biblioteksentralen, autorisert post</option> 
175
		[% ELSE %] 
176
		<option value="2">2 Biblioteksentralen, autorisert post</option> 
177
		[% END %] 
178
	[% IF ( f393 ) %] 
179
		<option value="3" selected="selected">3 Biblioteksentralen, uautorisert post</option> 
180
		[% ELSE %] 
181
		<option value="3">3 Biblioteksentralen, uautorisert post</option> 
182
		[% END %] 
183
	[% IF ( f394 ) %] 
184
		<option value="4" selected="selected">4 BIBSYS, autorisert post</option> 
185
		[% ELSE %] 
186
		<option value="4">4 BIBSYS, autorisert post</option> 
187
		[% END %] 
188
	[% IF ( f395 ) %] 
189
		<option value="5" selected="selected">5 BIBSYS, uautorisert post</option> 
190
		[% ELSE %] 
191
		<option value="5">5 BIBSYS, uautorisert post</option> 
192
		[% END %] 
193
	[% IF ( f399 ) %] 
194
		<option value="9" selected="selected">9 Annen kilde</option> 
195
		[% ELSE %] 
196
		<option value="9">9 Annen kilde</option> 
197
		[% END %]
198
								</select>
199
                </td>
200
        </tr>
201
				
202
<!-- End second batch of common fields for all formats -->
203
204
</table>
205
<fieldset class="action"><input type="submit" value="OK" /> <a href="#" class="cancel close">Cancel</a></fieldset>
206
</form>
207
208
<script>//<![CDATA[
209
210
function RedrawChoices(typ){
211
  var divOutput=document.getElementById("choices");
212
  switch(typ){
213
  case "mon":
214
    divOutput.innerHTML='<table><tr> \
215
		<td>18 Illustrasjoner</td> \
216
		<td> \
217
    <select name="f18" id="f18"> \
218
	[% IF ( f18 ) %] \
219
		<option value=" " selected="selected">^ Ikke angitt</option> \
220
		[% ELSE %] \
221
		<option value=" ">^ Ikke angitt</option> \
222
		[% END %] \
223
	[% IF ( f18a ) %] \
224
		<option value="a" selected="selected">a Illustrasjoner</option> \
225
		[% ELSE %] \
226
		<option value="a">a Illustrasjoner</option> \
227
		[% END %] \
228
	[% IF ( f18b ) %] \
229
		<option value="b" selected="selected">b Kart</option> \
230
		[% ELSE %] \
231
		<option value="b">b Kart</option> \
232
		[% END %] \
233
	[% IF ( f18c ) %] \
234
		<option value="c" selected="selected">c Portretter</option> \
235
		[% ELSE %] \
236
		<option value="c">c Portretter</option> \
237
		[% END %] \
238
	[% IF ( f18d ) %] \
239
		<option value="d" selected="selected">d Diagrammer</option> \
240
		[% ELSE %] \
241
		<option value="d">d Diagrammer</option> \
242
		[% END %] \
243
	[% IF ( f18e ) %] \
244
		<option value="e" selected="selected">e Planer (grunnriss)</option> \
245
		[% ELSE %] \
246
		<option value="e">e Planer (grunnriss)</option> \
247
		[% END %] \
248
	[% IF ( f18f ) %] \
249
		<option value="f" selected="selected">f Plansjer</option> \
250
		[% ELSE %] \
251
		<option value="f">f Plansjer</option> \
252
		[% END %] \
253
	[% IF ( f18g ) %] \
254
		<option value="g" selected="selected">g Noter</option> \
255
		[% ELSE %] \
256
		<option value="g">g Noter</option> \
257
		[% END %] \
258
	[% IF ( f18h ) %] \
259
		<option value="h" selected="selected">h Faksimiler</option> \
260
		[% ELSE %] \
261
		<option value="h">h Faksimiler</option> \
262
		[% END %] \
263
	[% IF ( f18i ) %] \
264
		<option value="i" selected="selected">i VÃ¥penskjold</option> \
265
		[% ELSE %] \
266
		<option value="i">i VÃ¥penskjold</option> \
267
		[% END %] \
268
	[% IF ( f18j ) %] \
269
		<option value="j" selected="selected">j Genealogiske tabeller</option> \
270
		[% ELSE %] \
271
		<option value="j">j Genealogiske tabeller</option> \
272
		[% END %] \
273
	[% IF ( f18k ) %] \
274
		<option value="k" selected="selected">k Blanketter</option> \
275
		[% ELSE %] \
276
		<option value="k">k Blanketter</option> \
277
		[% END %] \
278
	[% IF ( f18l ) %] \
279
		<option value="l" selected="selected">l Prøver, mønstre</option> \
280
		[% ELSE %] \
281
		<option value="l">l Prøver, mønstre</option> \
282
		[% END %] \
283
	[% IF ( f18m ) %] \
284
		<option value="m" selected="selected">m Lydmateriale</option> \
285
		[% ELSE %] \
286
		<option value="m">m Lydmateriale</option> \
287
		[% END %] \
288
	[% IF ( f18n ) %] \
289
		<option value="n" selected="selected">n Illustrasjonskode ikke relevant</option> \
290
		[% ELSE %] \
291
		<option value="n">n Illustrasjonskode ikke relevant</option> \
292
		[% END %] \
293
	[% IF ( f18o ) %] \
294
		<option value="o" selected="selected">o Fotografier</option> \
295
		[% ELSE %] \
296
		<option value="o">o Fotografier</option> \
297
		[% END %] \
298
	[% IF ( f18p ) %] \
299
		<option value="p" selected="selected">p Illuminasjoner</option> \
300
		[% ELSE %] \
301
		<option value="p">p Illuminasjoner</option> \
302
		[% END %] \
303
		</select> \
304
		</td> \
305
		</tr><tr> \
306
		<td>19 Illustrasjoner</td> \
307
		<td> \
308
    <select name="f19" id="f19"> \
309
	[% IF ( f19 ) %] \
310
		<option value=" " selected="selected">^ Ikke angitt</option> \
311
		[% ELSE %] \
312
		<option value=" ">^ Ikke angitt</option> \
313
		[% END %] \
314
	[% IF ( f19a ) %] \
315
		<option value="a" selected="selected">a Illustrasjoner</option> \
316
		[% ELSE %] \
317
		<option value="a">a Illustrasjoner</option> \
318
		[% END %] \
319
	[% IF ( f19b ) %] \
320
		<option value="b" selected="selected">b Kart</option> \
321
		[% ELSE %] \
322
		<option value="b">b Kart</option> \
323
		[% END %] \
324
	[% IF ( f19c ) %] \
325
		<option value="c" selected="selected">c Portretter</option> \
326
		[% ELSE %] \
327
		<option value="c">c Portretter</option> \
328
		[% END %] \
329
	[% IF ( f19d ) %] \
330
		<option value="d" selected="selected">d Diagrammer</option> \
331
		[% ELSE %] \
332
		<option value="d">d Diagrammer</option> \
333
		[% END %] \
334
	[% IF ( f19e ) %] \
335
		<option value="e" selected="selected">e Planer (grunnriss)</option> \
336
		[% ELSE %] \
337
		<option value="e">e Planer (grunnriss)</option> \
338
		[% END %] \
339
	[% IF ( f19f ) %] \
340
		<option value="f" selected="selected">f Plansjer</option> \
341
		[% ELSE %] \
342
		<option value="f">f Plansjer</option> \
343
		[% END %] \
344
	[% IF ( f19g ) %] \
345
		<option value="g" selected="selected">g Noter</option> \
346
		[% ELSE %] \
347
		<option value="g">g Noter</option> \
348
		[% END %] \
349
	[% IF ( f19h ) %] \
350
		<option value="h" selected="selected">h Faksimiler</option> \
351
		[% ELSE %] \
352
		<option value="h">h Faksimiler</option> \
353
		[% END %] \
354
	[% IF ( f19i ) %] \
355
		<option value="i" selected="selected">i VÃ¥penskjold</option> \
356
		[% ELSE %] \
357
		<option value="i">i VÃ¥penskjold</option> \
358
		[% END %] \
359
	[% IF ( f19j ) %] \
360
		<option value="j" selected="selected">j Genealogiske tabeller</option> \
361
		[% ELSE %] \
362
		<option value="j">j Genealogiske tabeller</option> \
363
		[% END %] \
364
	[% IF ( f19k ) %] \
365
		<option value="k" selected="selected">k Blanketter</option> \
366
		[% ELSE %] \
367
		<option value="k">k Blanketter</option> \
368
		[% END %] \
369
	[% IF ( f19l ) %] \
370
		<option value="l" selected="selected">l Prøver, mønstre</option> \
371
		[% ELSE %] \
372
		<option value="l">l Prøver, mønstre</option> \
373
		[% END %] \
374
	[% IF ( f19m ) %] \
375
		<option value="m" selected="selected">m Lydmateriale</option> \
376
		[% ELSE %] \
377
		<option value="m">m Lydmateriale</option> \
378
		[% END %] \
379
	[% IF ( f19n ) %] \
380
		<option value="n" selected="selected">n Illustrasjonskode ikke relevant</option> \
381
		[% ELSE %] \
382
		<option value="n">n Illustrasjonskode ikke relevant</option> \
383
		[% END %] \
384
	[% IF ( f19o ) %] \
385
		<option value="o" selected="selected">o Fotografier</option> \
386
		[% ELSE %] \
387
		<option value="o">o Fotografier</option> \
388
		[% END %] \
389
	[% IF ( f19p ) %] \
390
		<option value="p" selected="selected">p Illuminasjoner</option> \
391
		[% ELSE %] \
392
		<option value="p">p Illuminasjoner</option> \
393
		[% END %] \
394
		</select> \
395
		</td> \
396
		</tr><tr> \
397
		<td>20 Illustrasjoner</td> \
398
		<td> \
399
    <select name="f20" id="f20"> \
400
	[% IF ( f20 ) %] \
401
		<option value=" " selected="selected">^ Ikke angitt</option> \
402
		[% ELSE %] \
403
		<option value=" ">^ Ikke angitt</option> \
404
		[% END %] \
405
	[% IF ( f20a ) %] \
406
		<option value="a" selected="selected">a Illustrasjoner</option> \
407
		[% ELSE %] \
408
		<option value="a">a Illustrasjoner</option> \
409
		[% END %] \
410
	[% IF ( f20b ) %] \
411
		<option value="b" selected="selected">b Kart</option> \
412
		[% ELSE %] \
413
		<option value="b">b Kart</option> \
414
		[% END %] \
415
	[% IF ( f20c ) %] \
416
		<option value="c" selected="selected">c Portretter</option> \
417
		[% ELSE %] \
418
		<option value="c">c Portretter</option> \
419
		[% END %] \
420
	[% IF ( f20d ) %] \
421
		<option value="d" selected="selected">d Diagrammer</option> \
422
		[% ELSE %] \
423
		<option value="d">d Diagrammer</option> \
424
		[% END %] \
425
	[% IF ( f20e ) %] \
426
		<option value="e" selected="selected">e Planer (grunnriss)</option> \
427
		[% ELSE %] \
428
		<option value="e">e Planer (grunnriss)</option> \
429
		[% END %] \
430
	[% IF ( f20f ) %] \
431
		<option value="f" selected="selected">f Plansjer</option> \
432
		[% ELSE %] \
433
		<option value="f">f Plansjer</option> \
434
		[% END %] \
435
	[% IF ( f20g ) %] \
436
		<option value="g" selected="selected">g Noter</option> \
437
		[% ELSE %] \
438
		<option value="g">g Noter</option> \
439
		[% END %] \
440
	[% IF ( f20h ) %] \
441
		<option value="h" selected="selected">h Faksimiler</option> \
442
		[% ELSE %] \
443
		<option value="h">h Faksimiler</option> \
444
		[% END %] \
445
	[% IF ( f20i ) %] \
446
		<option value="i" selected="selected">i VÃ¥penskjold</option> \
447
		[% ELSE %] \
448
		<option value="i">i VÃ¥penskjold</option> \
449
		[% END %] \
450
	[% IF ( f20j ) %] \
451
		<option value="j" selected="selected">j Genealogiske tabeller</option> \
452
		[% ELSE %] \
453
		<option value="j">j Genealogiske tabeller</option> \
454
		[% END %] \
455
	[% IF ( f20k ) %] \
456
		<option value="k" selected="selected">k Blanketter</option> \
457
		[% ELSE %] \
458
		<option value="k">k Blanketter</option> \
459
		[% END %] \
460
	[% IF ( f20l ) %] \
461
		<option value="l" selected="selected">l Prøver, mønstre</option> \
462
		[% ELSE %] \
463
		<option value="l">l Prøver, mønstre</option> \
464
		[% END %] \
465
	[% IF ( f20m ) %] \
466
		<option value="m" selected="selected">m Lydmateriale</option> \
467
		[% ELSE %] \
468
		<option value="m">m Lydmateriale</option> \
469
		[% END %] \
470
	[% IF ( f20n ) %] \
471
		<option value="n" selected="selected">n Illustrasjonskode ikke relevant</option> \
472
		[% ELSE %] \
473
		<option value="n">n Illustrasjonskode ikke relevant</option> \
474
		[% END %] \
475
	[% IF ( f20o ) %] \
476
		<option value="o" selected="selected">o Fotografier</option> \
477
		[% ELSE %] \
478
		<option value="o">o Fotografier</option> \
479
		[% END %] \
480
	[% IF ( f20p ) %] \
481
		<option value="p" selected="selected">p Illuminasjoner</option> \
482
		[% ELSE %] \
483
		<option value="p">p Illuminasjoner</option> \
484
		[% END %] \
485
		</select> \
486
		</td> \
487
		</tr><tr> \
488
		<td>21 Illustrasjoner</td> \
489
		<td> \
490
    <select name="f21" id="f21"> \
491
	[% IF ( f21 ) %] \
492
		<option value=" " selected="selected">^ Ikke angitt</option> \
493
		[% ELSE %] \
494
		<option value=" ">^ Ikke angitt</option> \
495
		[% END %] \
496
	[% IF ( f21a ) %] \
497
		<option value="a" selected="selected">a Illustrasjoner</option> \
498
		[% ELSE %] \
499
		<option value="a">a Illustrasjoner</option> \
500
		[% END %] \
501
	[% IF ( f21b ) %] \
502
		<option value="b" selected="selected">b Kart</option> \
503
		[% ELSE %] \
504
		<option value="b">b Kart</option> \
505
		[% END %] \
506
	[% IF ( f21c ) %] \
507
		<option value="c" selected="selected">c Portretter</option> \
508
		[% ELSE %] \
509
		<option value="c">c Portretter</option> \
510
		[% END %] \
511
	[% IF ( f21d ) %] \
512
		<option value="d" selected="selected">d Diagrammer</option> \
513
		[% ELSE %] \
514
		<option value="d">d Diagrammer</option> \
515
		[% END %] \
516
	[% IF ( f21e ) %] \
517
		<option value="e" selected="selected">e Planer (grunnriss)</option> \
518
		[% ELSE %] \
519
		<option value="e">e Planer (grunnriss)</option> \
520
		[% END %] \
521
	[% IF ( f21f ) %] \
522
		<option value="f" selected="selected">f Plansjer</option> \
523
		[% ELSE %] \
524
		<option value="f">f Plansjer</option> \
525
		[% END %] \
526
	[% IF ( f21g ) %] \
527
		<option value="g" selected="selected">g Noter</option> \
528
		[% ELSE %] \
529
		<option value="g">g Noter</option> \
530
		[% END %] \
531
	[% IF ( f21h ) %] \
532
		<option value="h" selected="selected">h Faksimiler</option> \
533
		[% ELSE %] \
534
		<option value="h">h Faksimiler</option> \
535
		[% END %] \
536
	[% IF ( f21i ) %] \
537
		<option value="i" selected="selected">i VÃ¥penskjold</option> \
538
		[% ELSE %] \
539
		<option value="i">i VÃ¥penskjold</option> \
540
		[% END %] \
541
	[% IF ( f21j ) %] \
542
		<option value="j" selected="selected">j Genealogiske tabeller</option> \
543
		[% ELSE %] \
544
		<option value="j">j Genealogiske tabeller</option> \
545
		[% END %] \
546
	[% IF ( f21k ) %] \
547
		<option value="k" selected="selected">k Blanketter</option> \
548
		[% ELSE %] \
549
		<option value="k">k Blanketter</option> \
550
		[% END %] \
551
	[% IF ( f21l ) %] \
552
		<option value="l" selected="selected">l Prøver, mønstre</option> \
553
		[% ELSE %] \
554
		<option value="l">l Prøver, mønstre</option> \
555
		[% END %] \
556
	[% IF ( f21m ) %] \
557
		<option value="m" selected="selected">m Lydmateriale</option> \
558
		[% ELSE %] \
559
		<option value="m">m Lydmateriale</option> \
560
		[% END %] \
561
	[% IF ( f21n ) %] \
562
		<option value="n" selected="selected">n Illustrasjonskode ikke relevant</option> \
563
		[% ELSE %] \
564
		<option value="n">n Illustrasjonskode ikke relevant</option> \
565
		[% END %] \
566
	[% IF ( f21o ) %] \
567
		<option value="o" selected="selected">o Fotografier</option> \
568
		[% ELSE %] \
569
		<option value="o">o Fotografier</option> \
570
		[% END %] \
571
	[% IF ( f21p ) %] \
572
		<option value="p" selected="selected">p Illuminasjoner</option> \
573
		[% ELSE %] \
574
		<option value="p">p Illuminasjoner</option> \
575
		[% END %] \
576
		</select> \
577
		</td></tr> \
578
		<tr> \
579
		<td>22 Målgruppe / Intelektuelt nivå</td> \
580
		<td> \
581
        <select name="f22" id="f22"> \
582
	[% IF ( f22 ) %] \
583
		<option value=" " selected="selected">^ Ikke angitt</option> \
584
		[% ELSE %] \
585
		<option value=" ">^ Ikke angitt</option> \
586
		[% END %] \
587
	[% IF ( f22a ) %] \
588
		<option value="a" selected="selected">a Voksne</option> \
589
		[% ELSE %] \
590
		<option value="a">a Voksne</option> \
591
		[% END %] \
592
	[% IF ( f22b ) %] \
593
		<option value="b" selected="selected">b Billedbøker for voksne</option> \
594
		[% ELSE %] \
595
		<option value="b">b Billedbøker for voksne</option> \
596
		[% END %] \
597
	[% IF ( f22f ) %] \
598
		<option value="f" selected="selected">f Spesialisert</option> \
599
		[% ELSE %] \
600
		<option value="f">f Spesialisert</option> \
601
		[% END %] \
602
	[% IF ( f22g ) %] \
603
		<option value="g" selected="selected">g Generell</option> \
604
		[% ELSE %] \
605
		<option value="g">g Generell</option> \
606
		[% END %] \
607
	[% IF ( f22j ) %] \
608
		<option value="j" selected="selected">j Barn og ungdom</option> \
609
		[% ELSE %] \
610
		<option value="j">j Barn og ungdom</option> \
611
		[% END %] \
612
	[% IF ( f22k ) %] \
613
		<option value="k" selected="selected">k Billedbøker</option> \
614
		[% ELSE %] \
615
		<option value="k">k Billedbøker</option> \
616
		[% END %] \
617
	[% IF ( f22l ) %] \
618
		<option value="l" selected="selected">l Barn i alderen til og med 5 år</option> \
619
		[% ELSE %] \
620
		<option value="l">l Barn i alderen til og med 5 år</option> \
621
		[% END %] \
622
	[% IF ( f22m ) %] \
623
		<option value="m" selected="selected">m Elever på 1. til 3. klassetrinn</option> \
624
		[% ELSE %] \
625
		<option value="m">m Elever på 1. til 3. klassetrinn</option> \
626
		[% END %] \
627
	[% IF ( f22n ) %] \
628
		<option value="n" selected="selected">n Elever på 4. og 5. klassetrinn</option> \
629
		[% ELSE %] \
630
		<option value="n">n Elever på 4. og 5. klassetrinn</option> \
631
		[% END %] \
632
	[% IF ( f22o ) %] \
633
		<option value="o" selected="selected">o Elever på 6. og 7. klassetrinn</option> \
634
		[% ELSE %] \
635
		<option value="o">o Elever på 6. og 7. klassetrinn</option> \
636
		[% END %] \
637
	[% IF ( f22p ) %] \
638
		<option value="p" selected="selected">p Elever på ungdomstrinnet</option> \
639
		[% ELSE %] \
640
		<option value="p">p Elever på ungdomstrinnet</option> \
641
		[% END %] \
642
	[% IF ( f22q ) %] \
643
		<option value="q" selected="selected">q Lettlest</option> \
644
		[% ELSE %] \
645
		<option value="q">q Lettlest</option> \
646
		[% END %] \
647
	[% IF ( f22r ) %] \
648
		<option value="r" selected="selected">r For psykisk utviklingshemmede</option> \
649
		[% ELSE %] \
650
		<option value="r">r For psykisk utviklingshemmede</option> \
651
		[% END %] \
652
	[% IF ( f22s ) %] \
653
		<option value="s" selected="selected">s Storskrift</option> \
654
		[% ELSE %] \
655
		<option value="s">s Storskrift</option> \
656
		[% END %] \
657
	[% IF ( f22u ) %] \
658
		<option value="u" selected="selected">u Ukjent</option> \
659
		[% ELSE %] \
660
		<option value="u">u Ukjent</option> \
661
		[% END %] \
662
	[% IF ( f22v ) %] \
663
		<option value="v" selected="selected">v Billedbøker for barn i alderen til og med 5 år</option> \
664
		[% ELSE %] \
665
		<option value="v">v Billedbøker for barn i alderen til og med 5 år</option> \
666
		[% END %] \
667
	[% IF ( f22w ) %] \
668
		<option value="w" selected="selected">w Billedbøker for elever på 1. til 3. klassetrinn</option> \
669
		[% ELSE %] \
670
		<option value="w">w Billedbøker for elever på 1. til 3. klassetrinn</option> \
671
		[% END %] \
672
	[% IF ( f22x ) %] \
673
		<option value="x" selected="selected">x Billedbøker for elever på 4. og 5. klassetrinn</option> \
674
		[% ELSE %] \
675
		<option value="x">x Billedbøker for elever på 4. og 5. klassetrinn</option> \
676
		[% END %] \
677
	[% IF ( f22y ) %] \
678
		<option value="y" selected="selected">y Billedbøker for elever på 6. og 7. klassetrinn</option> \
679
		[% ELSE %] \
680
		<option value="y">y Billedbøker for elever på 6. og 7. klassetrinn</option> \
681
		[% END %] \
682
	[% IF ( f22z ) %] \
683
		<option value="z" selected="selected">z Billedbøker for elever på ungdomstrinnet</option> \
684
		[% ELSE %] \
685
		<option value="z">z Billedbøker for elever på ungdomstrinnet</option> \
686
		[% END %] \
687
		</select> \
688
		</td></tr> \
689
		<tr> \
690
				<td>23 Materialform</td> \
691
				<td> \
692
       <select name="f23" id="f23"> \
693
	[% IF ( f23 ) %] \
694
		<option value=" " selected="selected">^ Ikke angitt</option> \
695
		[% ELSE %] \
696
		<option value=" ">^ Ikke angitt</option> \
697
		[% END %] \
698
	[% IF ( f23a ) %] \
699
		<option value="a" selected="selected">a Mikrofilm</option> \
700
		[% ELSE %] \
701
		<option value="a">a Mikrofilm</option> \
702
		[% END %] \
703
	[% IF ( f23b ) %] \
704
		<option value="b" selected="selected">b Mikrofilmkort</option> \
705
		[% ELSE %] \
706
		<option value="b">b Mikrofilmkort</option> \
707
		[% END %] \
708
	[% IF ( f23c ) %] \
709
		<option value="c" selected="selected">c Mikro-opak</option> \
710
		[% ELSE %] \
711
		<option value="c">c Mikro-opak</option> \
712
		[% END %] \
713
	[% IF ( f23f ) %] \
714
		<option value="f" selected="selected">f Braille</option> \
715
		[% ELSE %] \
716
		<option value="f">f Braille</option> \
717
		[% END %] \
718
	[% IF ( f23r ) %] \
719
		<option value="r" selected="selected">r Ordinært trykk (øye-lesbar)</option> \
720
		[% ELSE %] \
721
		<option value="r">r Ordinært trykk (øye-lesbar)</option> \
722
		[% END %] \
723
				</select> \
724
				</td></tr> \
725
		<tr> \
726
				<td>24 Innhold</td> \
727
				<td> \
728
       <select name="f24" id="f24"> \
729
	[% IF ( f24 ) %] \
730
		<option value=" " selected="selected">^ Ikke angitt</option> \
731
		[% ELSE %] \
732
		<option value=" ">^ Ikke angitt</option> \
733
		[% END %] \
734
	[% IF ( f24a ) %] \
735
		<option value="a" selected="selected">a Sammendrag(abstracts)/Referatorganer</option> \
736
		[% ELSE %] \
737
		<option value="a">a Sammendrag(abstracts)/Referatorganer</option> \
738
		[% END %] \
739
	[% IF ( f24b ) %] \
740
		<option value="b" selected="selected">b Bibliografier</option> \
741
		[% ELSE %] \
742
		<option value="b">b Bibliografier</option> \
743
		[% END %] \
744
	[% IF ( f24c ) %] \
745
		<option value="c" selected="selected">c Kataloger</option> \
746
		[% ELSE %] \
747
		<option value="c">c Kataloger</option> \
748
		[% END %] \
749
	[% IF ( f24d ) %] \
750
		<option value="d" selected="selected">d Ordbøker</option> \
751
		[% ELSE %] \
752
		<option value="d">d Ordbøker</option> \
753
		[% END %] \
754
	[% IF ( f24e ) %] \
755
		<option value="e" selected="selected">e Konversasjonsleksika</option> \
756
		[% ELSE %] \
757
		<option value="e">e Konversasjonsleksika</option> \
758
		[% END %] \
759
	[% IF ( f24f ) %] \
760
		<option value="f" selected="selected">f Håndbøker</option> \
761
		[% ELSE %] \
762
		<option value="f">f Håndbøker</option> \
763
		[% END %] \
764
	[% IF ( f24h ) %] \
765
		<option value="h" selected="selected">h Referanseverk</option> \
766
		[% ELSE %] \
767
		<option value="h">h Referanseverk</option> \
768
		[% END %] \
769
	[% IF ( f24i ) %] \
770
		<option value="i" selected="selected">i Registre</option> \
771
		[% ELSE %] \
772
		<option value="i">i Registre</option> \
773
		[% END %] \
774
	[% IF ( f24k ) %] \
775
		<option value="k" selected="selected">k Diskografier</option> \
776
		[% ELSE %] \
777
		<option value="k">k Diskografier</option> \
778
		[% END %] \
779
	[% IF ( f24l ) %] \
780
		<option value="l" selected="selected">l Lover og forskrifter</option> \
781
		[% ELSE %] \
782
		<option value="l">l Lover og forskrifter</option> \
783
		[% END %] \
784
	[% IF ( f24m ) %] \
785
		<option value="m" selected="selected">m Hovedoppgaver/diplomoppgaver</option> \
786
		[% ELSE %] \
787
		<option value="m">m Hovedoppgaver/diplomoppgaver</option> \
788
		[% END %] \
789
	[% IF ( f24n ) %] \
790
		<option value="n" selected="selected">n Oversiktsverker innenfor et emne</option> \
791
		[% ELSE %] \
792
		<option value="n">n Oversiktsverker innenfor et emne</option> \
793
		[% END %] \
794
	[% IF ( f24o ) %] \
795
		<option value="o" selected="selected">o Anmeldelser</option> \
796
		[% ELSE %] \
797
		<option value="o">o Anmeldelser</option> \
798
		[% END %] \
799
	[% IF ( f24q ) %] \
800
		<option value="q" selected="selected">q Filmografier</option> \
801
		[% ELSE %] \
802
		<option value="q">q Filmografier</option> \
803
		[% END %] \
804
	[% IF ( f24r ) %] \
805
		<option value="r" selected="selected">r Adressebøker</option> \
806
		[% ELSE %] \
807
		<option value="r">r Adressebøker</option> \
808
		[% END %] \
809
	[% IF ( f24s ) %] \
810
		<option value="s" selected="selected">s Statistikker</option> \
811
		[% ELSE %] \
812
		<option value="s">s Statistikker</option> \
813
		[% END %] \
814
	[% IF ( f24t ) %] \
815
		<option value="t" selected="selected">t Tekniske rapporter</option> \
816
		[% ELSE %] \
817
		<option value="t">t Tekniske rapporter</option> \
818
		[% END %] \
819
	[% IF ( f24x ) %] \
820
		<option value="x" selected="selected">x Doktoravhandlinger/lisensiat-avhandlinger</option> \
821
		[% ELSE %] \
822
		<option value="x">x Doktoravhandlinger/lisensiat-avhandlinger</option> \
823
		[% END %] \
824
	[% IF ( f24z ) %] \
825
		<option value="z" selected="selected">z Ingen av de nevnte typene innhold</option> \
826
		[% ELSE %] \
827
		<option value="z">z Ingen av de nevnte typene innhold</option> \
828
		[% END %] \
829
				</select> \
830
				</td></tr> \
831
		<tr> \
832
				<td>25 Innhold</td> \
833
				<td> \
834
       <select name="f25" id="f25"> \
835
	[% IF ( f25 ) %] \
836
		<option value=" " selected="selected">^ Ikke angitt</option> \
837
		[% ELSE %] \
838
		<option value=" ">^ Ikke angitt</option> \
839
		[% END %] \
840
	[% IF ( f25a ) %] \
841
		<option value="a" selected="selected">a Sammendrag(abstracts)/Referatorganer</option> \
842
		[% ELSE %] \
843
		<option value="a">a Sammendrag(abstracts)/Referatorganer</option> \
844
		[% END %] \
845
	[% IF ( f25b ) %] \
846
		<option value="b" selected="selected">b Bibliografier</option> \
847
		[% ELSE %] \
848
		<option value="b">b Bibliografier</option> \
849
		[% END %] \
850
	[% IF ( f25c ) %] \
851
		<option value="c" selected="selected">c Kataloger</option> \
852
		[% ELSE %] \
853
		<option value="c">c Kataloger</option> \
854
		[% END %] \
855
	[% IF ( f25d ) %] \
856
		<option value="d" selected="selected">d Ordbøker</option> \
857
		[% ELSE %] \
858
		<option value="d">d Ordbøker</option> \
859
		[% END %] \
860
	[% IF ( f25e ) %] \
861
		<option value="e" selected="selected">e Konversasjonsleksika</option> \
862
		[% ELSE %] \
863
		<option value="e">e Konversasjonsleksika</option> \
864
		[% END %] \
865
	[% IF ( f25f ) %] \
866
		<option value="f" selected="selected">f Håndbøker</option> \
867
		[% ELSE %] \
868
		<option value="f">f Håndbøker</option> \
869
		[% END %] \
870
	[% IF ( f25h ) %] \
871
		<option value="h" selected="selected">h Referanseverk</option> \
872
		[% ELSE %] \
873
		<option value="h">h Referanseverk</option> \
874
		[% END %] \
875
	[% IF ( f25i ) %] \
876
		<option value="i" selected="selected">i Registre</option> \
877
		[% ELSE %] \
878
		<option value="i">i Registre</option> \
879
		[% END %] \
880
	[% IF ( f25k ) %] \
881
		<option value="k" selected="selected">k Diskografier</option> \
882
		[% ELSE %] \
883
		<option value="k">k Diskografier</option> \
884
		[% END %] \
885
	[% IF ( f25l ) %] \
886
		<option value="l" selected="selected">l Lover og forskrifter</option> \
887
		[% ELSE %] \
888
		<option value="l">l Lover og forskrifter</option> \
889
		[% END %] \
890
	[% IF ( f25m ) %] \
891
		<option value="m" selected="selected">m Hovedoppgaver/diplomoppgaver</option> \
892
		[% ELSE %] \
893
		<option value="m">m Hovedoppgaver/diplomoppgaver</option> \
894
		[% END %] \
895
	[% IF ( f25n ) %] \
896
		<option value="n" selected="selected">n Oversiktsverker innenfor et emne</option> \
897
		[% ELSE %] \
898
		<option value="n">n Oversiktsverker innenfor et emne</option> \
899
		[% END %] \
900
	[% IF ( f25o ) %] \
901
		<option value="o" selected="selected">o Anmeldelser</option> \
902
		[% ELSE %] \
903
		<option value="o">o Anmeldelser</option> \
904
		[% END %] \
905
	[% IF ( f25q ) %] \
906
		<option value="q" selected="selected">q Filmografier</option> \
907
		[% ELSE %] \
908
		<option value="q">q Filmografier</option> \
909
		[% END %] \
910
	[% IF ( f25r ) %] \
911
		<option value="r" selected="selected">r Adressebøker</option> \
912
		[% ELSE %] \
913
		<option value="r">r Adressebøker</option> \
914
		[% END %] \
915
	[% IF ( f25s ) %] \
916
		<option value="s" selected="selected">s Statistikker</option> \
917
		[% ELSE %] \
918
		<option value="s">s Statistikker</option> \
919
		[% END %] \
920
	[% IF ( f25t ) %] \
921
		<option value="t" selected="selected">t Tekniske rapporter</option> \
922
		[% ELSE %] \
923
		<option value="t">t Tekniske rapporter</option> \
924
		[% END %] \
925
	[% IF ( f25x ) %] \
926
		<option value="x" selected="selected">x Doktoravhandlinger/lisensiat-avhandlinger</option> \
927
		[% ELSE %] \
928
		<option value="x">x Doktoravhandlinger/lisensiat-avhandlinger</option> \
929
		[% END %] \
930
	[% IF ( f25z ) %] \
931
		<option value="z" selected="selected">z Ingen av de nevnte typene innhold</option> \
932
		[% ELSE %] \
933
		<option value="z">z Ingen av de nevnte typene innhold</option> \
934
		[% END %] \
935
				</select> \
936
				</td></tr> \
937
		<tr> \
938
				<td>26 Innhold</td> \
939
				<td> \
940
       <select name="f26" id="f26"> \
941
	[% IF ( f26 ) %] \
942
		<option value=" " selected="selected">^ Ikke angitt</option> \
943
		[% ELSE %] \
944
		<option value=" ">^ Ikke angitt</option> \
945
		[% END %] \
946
	[% IF ( f26a ) %] \
947
		<option value="a" selected="selected">a Sammendrag(abstracts)/Referatorganer</option> \
948
		[% ELSE %] \
949
		<option value="a">a Sammendrag(abstracts)/Referatorganer</option> \
950
		[% END %] \
951
	[% IF ( f26b ) %] \
952
		<option value="b" selected="selected">b Bibliografier</option> \
953
		[% ELSE %] \
954
		<option value="b">b Bibliografier</option> \
955
		[% END %] \
956
	[% IF ( f26c ) %] \
957
		<option value="c" selected="selected">c Kataloger</option> \
958
		[% ELSE %] \
959
		<option value="c">c Kataloger</option> \
960
		[% END %] \
961
	[% IF ( f26d ) %] \
962
		<option value="d" selected="selected">d Ordbøker</option> \
963
		[% ELSE %] \
964
		<option value="d">d Ordbøker</option> \
965
		[% END %] \
966
	[% IF ( f26e ) %] \
967
		<option value="e" selected="selected">e Konversasjonsleksika</option> \
968
		[% ELSE %] \
969
		<option value="e">e Konversasjonsleksika</option> \
970
		[% END %] \
971
	[% IF ( f26f ) %] \
972
		<option value="f" selected="selected">f Håndbøker</option> \
973
		[% ELSE %] \
974
		<option value="f">f Håndbøker</option> \
975
		[% END %] \
976
	[% IF ( f26h ) %] \
977
		<option value="h" selected="selected">h Referanseverk</option> \
978
		[% ELSE %] \
979
		<option value="h">h Referanseverk</option> \
980
		[% END %] \
981
	[% IF ( f26i ) %] \
982
		<option value="i" selected="selected">i Registre</option> \
983
		[% ELSE %] \
984
		<option value="i">i Registre</option> \
985
		[% END %] \
986
	[% IF ( f26k ) %] \
987
		<option value="k" selected="selected">k Diskografier</option> \
988
		[% ELSE %] \
989
		<option value="k">k Diskografier</option> \
990
		[% END %] \
991
	[% IF ( f26l ) %] \
992
		<option value="l" selected="selected">l Lover og forskrifter</option> \
993
		[% ELSE %] \
994
		<option value="l">l Lover og forskrifter</option> \
995
		[% END %] \
996
	[% IF ( f26m ) %] \
997
		<option value="m" selected="selected">m Hovedoppgaver/diplomoppgaver</option> \
998
		[% ELSE %] \
999
		<option value="m">m Hovedoppgaver/diplomoppgaver</option> \
1000
		[% END %] \
1001
	[% IF ( f26n ) %] \
1002
		<option value="n" selected="selected">n Oversiktsverker innenfor et emne</option> \
1003
		[% ELSE %] \
1004
		<option value="n">n Oversiktsverker innenfor et emne</option> \
1005
		[% END %] \
1006
	[% IF ( f26o ) %] \
1007
		<option value="o" selected="selected">o Anmeldelser</option> \
1008
		[% ELSE %] \
1009
		<option value="o">o Anmeldelser</option> \
1010
		[% END %] \
1011
	[% IF ( f26q ) %] \
1012
		<option value="q" selected="selected">q Filmografier</option> \
1013
		[% ELSE %] \
1014
		<option value="q">q Filmografier</option> \
1015
		[% END %] \
1016
	[% IF ( f26r ) %] \
1017
		<option value="r" selected="selected">r Adressebøker</option> \
1018
		[% ELSE %] \
1019
		<option value="r">r Adressebøker</option> \
1020
		[% END %] \
1021
	[% IF ( f26s ) %] \
1022
		<option value="s" selected="selected">s Statistikker</option> \
1023
		[% ELSE %] \
1024
		<option value="s">s Statistikker</option> \
1025
		[% END %] \
1026
	[% IF ( f26t ) %] \
1027
		<option value="t" selected="selected">t Tekniske rapporter</option> \
1028
		[% ELSE %] \
1029
		<option value="t">t Tekniske rapporter</option> \
1030
		[% END %] \
1031
	[% IF ( f26x ) %] \
1032
		<option value="x" selected="selected">x Doktoravhandlinger/lisensiat-avhandlinger</option> \
1033
		[% ELSE %] \
1034
		<option value="x">x Doktoravhandlinger/lisensiat-avhandlinger</option> \
1035
		[% END %] \
1036
	[% IF ( f26z ) %] \
1037
		<option value="z" selected="selected">z Ingen av de nevnte typene innhold</option> \
1038
		[% ELSE %] \
1039
		<option value="z">z Ingen av de nevnte typene innhold</option> \
1040
		[% END %] \
1041
				</select> \
1042
				</td></tr> \
1043
		<tr> \
1044
				<td>27 Innhold</td> \
1045
				<td> \
1046
       <select name="f27" id="f27"> \
1047
	[% IF ( f27 ) %] \
1048
		<option value=" " selected="selected">^ Ikke angitt</option> \
1049
		[% ELSE %] \
1050
		<option value=" ">^ Ikke angitt</option> \
1051
		[% END %] \
1052
	[% IF ( f27a ) %] \
1053
		<option value="a" selected="selected">a Sammendrag(abstracts)/Referatorganer</option> \
1054
		[% ELSE %] \
1055
		<option value="a">a Sammendrag(abstracts)/Referatorganer</option> \
1056
		[% END %] \
1057
	[% IF ( f27b ) %] \
1058
		<option value="b" selected="selected">b Bibliografier</option> \
1059
		[% ELSE %] \
1060
		<option value="b">b Bibliografier</option> \
1061
		[% END %] \
1062
	[% IF ( f27c ) %] \
1063
		<option value="c" selected="selected">c Kataloger</option> \
1064
		[% ELSE %] \
1065
		<option value="c">c Kataloger</option> \
1066
		[% END %] \
1067
	[% IF ( f27d ) %] \
1068
		<option value="d" selected="selected">d Ordbøker</option> \
1069
		[% ELSE %] \
1070
		<option value="d">d Ordbøker</option> \
1071
		[% END %] \
1072
	[% IF ( f27e ) %] \
1073
		<option value="e" selected="selected">e Konversasjonsleksika</option> \
1074
		[% ELSE %] \
1075
		<option value="e">e Konversasjonsleksika</option> \
1076
		[% END %] \
1077
	[% IF ( f27f ) %] \
1078
		<option value="f" selected="selected">f Håndbøker</option> \
1079
		[% ELSE %] \
1080
		<option value="f">f Håndbøker</option> \
1081
		[% END %] \
1082
	[% IF ( f27h ) %] \
1083
		<option value="h" selected="selected">h Referanseverk</option> \
1084
		[% ELSE %] \
1085
		<option value="h">h Referanseverk</option> \
1086
		[% END %] \
1087
	[% IF ( f27i ) %] \
1088
		<option value="i" selected="selected">i Registre</option> \
1089
		[% ELSE %] \
1090
		<option value="i">i Registre</option> \
1091
		[% END %] \
1092
	[% IF ( f27k ) %] \
1093
		<option value="k" selected="selected">k Diskografier</option> \
1094
		[% ELSE %] \
1095
		<option value="k">k Diskografier</option> \
1096
		[% END %] \
1097
	[% IF ( f27l ) %] \
1098
		<option value="l" selected="selected">l Lover og forskrifter</option> \
1099
		[% ELSE %] \
1100
		<option value="l">l Lover og forskrifter</option> \
1101
		[% END %] \
1102
	[% IF ( f27m ) %] \
1103
		<option value="m" selected="selected">m Hovedoppgaver/diplomoppgaver</option> \
1104
		[% ELSE %] \
1105
		<option value="m">m Hovedoppgaver/diplomoppgaver</option> \
1106
		[% END %] \
1107
	[% IF ( f27n ) %] \
1108
		<option value="n" selected="selected">n Oversiktsverker innenfor et emne</option> \
1109
		[% ELSE %] \
1110
		<option value="n">n Oversiktsverker innenfor et emne</option> \
1111
		[% END %] \
1112
	[% IF ( f27o ) %] \
1113
		<option value="o" selected="selected">o Anmeldelser</option> \
1114
		[% ELSE %] \
1115
		<option value="o">o Anmeldelser</option> \
1116
		[% END %] \
1117
	[% IF ( f27q ) %] \
1118
		<option value="q" selected="selected">q Filmografier</option> \
1119
		[% ELSE %] \
1120
		<option value="q">q Filmografier</option> \
1121
		[% END %] \
1122
	[% IF ( f27r ) %] \
1123
		<option value="r" selected="selected">r Adressebøker</option> \
1124
		[% ELSE %] \
1125
		<option value="r">r Adressebøker</option> \
1126
		[% END %] \
1127
	[% IF ( f27s ) %] \
1128
		<option value="s" selected="selected">s Statistikker</option> \
1129
		[% ELSE %] \
1130
		<option value="s">s Statistikker</option> \
1131
		[% END %] \
1132
	[% IF ( f27t ) %] \
1133
		<option value="t" selected="selected">t Tekniske rapporter</option> \
1134
		[% ELSE %] \
1135
		<option value="t">t Tekniske rapporter</option> \
1136
		[% END %] \
1137
	[% IF ( f27x ) %] \
1138
		<option value="x" selected="selected">x Doktoravhandlinger/lisensiat-avhandlinger</option> \
1139
		[% ELSE %] \
1140
		<option value="x">x Doktoravhandlinger/lisensiat-avhandlinger</option> \
1141
		[% END %] \
1142
	[% IF ( f27z ) %] \
1143
		<option value="z" selected="selected">z Ingen av de nevnte typene innhold</option> \
1144
		[% ELSE %] \
1145
		<option value="z">z Ingen av de nevnte typene innhold</option> \
1146
		[% END %] \
1147
				</select> \
1148
				</td></tr> \
1149
		<tr> \
1150
				<td>28 Offentlig publikasjon</td> \
1151
				<td> \
1152
       <select name="f28" id="f28"> \
1153
	[% IF ( f28 ) %] \
1154
		<option value=" " selected="selected">^ Ikke angitt</option> \
1155
		[% ELSE %] \
1156
		<option value=" ">^ Ikke angitt</option> \
1157
		[% END %] \
1158
	[% IF ( f280 ) %] \
1159
		<option value="0" selected="selected">0 Ikke offentlig publikasjon</option> \
1160
		[% ELSE %] \
1161
		<option value="0">0 Ikke offentlig publikasjon</option> \
1162
		[% END %] \
1163
	[% IF ( f281 ) %] \
1164
		<option value="1" selected="selected">1 Offentlig publikasjon</option> \
1165
		[% ELSE %] \
1166
		<option value="1">1 Offentlig publikasjon</option> \
1167
		[% END %] \
1168
	[% IF ( f28b ) %] \
1169
		<option value="b" selected="selected">b Kommunal publikasjon</option> \
1170
		[% ELSE %] \
1171
		<option value="b">b Kommunal publikasjon</option> \
1172
		[% END %] \
1173
	[% IF ( f28c ) %] \
1174
		<option value="c" selected="selected">c Fylkeskommunal publikasjon</option> \
1175
		[% ELSE %] \
1176
		<option value="c">c Fylkeskommunal publikasjon</option> \
1177
		[% END %] \
1178
	[% IF ( f28d ) %] \
1179
		<option value="d" selected="selected">d Publikasjon fra regjeringer, departementer, direktorater, offentlige utvalg o.l.</option> \
1180
		[% ELSE %] \
1181
		<option value="d">d Publikasjon fra regjeringer, departementer, direktorater, offentlige utvalg o.l.</option> \
1182
		[% END %] \
1183
	[% IF ( f28e ) %] \
1184
		<option value="e" selected="selected">e Publikasjon fra andre statlige institusjoner, f.eks. Statens kartverk</option> \
1185
		[% ELSE %] \
1186
		<option value="e">e Publikasjon fra andre statlige institusjoner, f.eks. Statens kartverk</option> \
1187
		[% END %] \
1188
				</select> \
1189
				</td></tr> \
1190
		<tr> \
1191
				<td>29 Konferanse</td> \
1192
				<td> \
1193
       <select name="f29" id="f29"> \
1194
	[% IF ( f29 ) %] \
1195
		<option value=" " selected="selected">^ Ikke angitt</option> \
1196
		[% ELSE %] \
1197
		<option value=" ">^ Ikke angitt</option> \
1198
		[% END %] \
1199
	[% IF ( f290 ) %] \
1200
		<option value="0" selected="selected">0 Dokumentet er ikke en konferansepublikasjon</option> \
1201
		[% ELSE %] \
1202
		<option value="0">0 Dokumentet er ikke en konferansepublikasjon</option> \
1203
		[% END %] \
1204
	[% IF ( f291 ) %] \
1205
		<option value="1" selected="selected">1 Dokumentet er en konferansepublikasjon</option> \
1206
		[% ELSE %] \
1207
		<option value="1">1 Dokumentet er en konferansepublikasjon</option> \
1208
		[% END %] \
1209
				</select> \
1210
				</td></tr> \
1211
		<tr> \
1212
				<td>30 Festskrift</td> \
1213
				<td> \
1214
       <select name="f30" id="f30"> \
1215
	[% IF ( f30 ) %] \
1216
		<option value=" " selected="selected">^ Ikke angitt</option> \
1217
		[% ELSE %] \
1218
		<option value=" ">^ Ikke angitt</option> \
1219
		[% END %] \
1220
	[% IF ( f300 ) %] \
1221
		<option value="0" selected="selected">0 Dokumentet er ikke et festskrift</option> \
1222
		[% ELSE %] \
1223
		<option value="0">0 Dokumentet er ikke et festskrift</option> \
1224
		[% END %] \
1225
	[% IF ( f301 ) %] \
1226
		<option value="1" selected="selected">1 Dokumentet er et festskrift</option> \
1227
		[% ELSE %] \
1228
		<option value="1">1 Dokumentet er et festskrift</option> \
1229
		[% END %] \
1230
	[% IF ( f30a ) %] \
1231
		<option value="a" selected="selected">a Festskrift for person</option> \
1232
		[% ELSE %] \
1233
		<option value="a">a Festskrift for person</option> \
1234
		[% END %] \
1235
	[% IF ( f30b ) %] \
1236
		<option value="b" selected="selected">b Festskrift for korporasjon</option> \
1237
		[% ELSE %] \
1238
		<option value="b">b Festskrift for korporasjon</option> \
1239
		[% END %] \
1240
				</select> \
1241
				</td></tr> \
1242
		<tr> \
1243
				<td>31 Register</td> \
1244
				<td> \
1245
       <select name="f31" id="f31"> \
1246
	[% IF ( f31 ) %] \
1247
		<option value=" " selected="selected">^ Ikke angitt</option> \
1248
		[% ELSE %] \
1249
		<option value=" ">^ Ikke angitt</option> \
1250
		[% END %] \
1251
	[% IF ( f310 ) %] \
1252
		<option value="0" selected="selected">0 Dokumentet har ikke register</option> \
1253
		[% ELSE %] \
1254
		<option value="0">0 Dokumentet har ikke register</option> \
1255
		[% END %] \
1256
	[% IF ( f311 ) %] \
1257
		<option value="1" selected="selected">1 Dokumentet har register</option> \
1258
		[% ELSE %] \
1259
		<option value="1">1 Dokumentet har register</option> \
1260
		[% END %] \
1261
				</select> \
1262
				</td></tr> \
1263
		<tr> \
1264
				<td>32 Udefinert</td> \
1265
				<td> \
1266
				<input type="hidden" name="f32" id="f32" size="1" value=" " /> \
1267
				</td></tr> \
1268
		<tr> \
1269
				<td>33 Litterær form / genre</td> \
1270
				<td> \
1271
       <select name="f33" id="f33"> \
1272
  [% IF ( f33 ) %] \
1273
		<option value=" " selected="selected">^ Ikke angitt</option> \
1274
		[% ELSE %] \
1275
		<option value=" ">^ Ikke angitt</option> \
1276
		[% END %] \
1277
	[% IF ( f330 ) %] \
1278
		<option value="0" selected="selected">0 Ikke skjønnlitteratu</option> \
1279
		[% ELSE %] \
1280
		<option value="0">0 Ikke skjønnlitteratu</option> \
1281
		[% END %] \
1282
	[% IF ( f331 ) %] \
1283
		<option value="1" selected="selected">1 Skjønnlitteratur</option> \
1284
		[% ELSE %] \
1285
		<option value="1">1 Skjønnlitteratur</option> \
1286
		[% END %] \
1287
	[% IF ( f33a ) %] \
1288
		<option value="a" selected="selected">a Antologi</option> \
1289
		[% ELSE %] \
1290
		<option value="a">a Antologi</option> \
1291
		[% END %] \
1292
	[% IF ( f33d ) %] \
1293
		<option value="d" selected="selected">d Dikt</option> \
1294
		[% ELSE %] \
1295
		<option value="d">d Dikt</option> \
1296
		[% END %] \
1297
	[% IF ( f33l ) %] \
1298
		<option value="l" selected="selected">l Lærebok, brevkurs</option> \
1299
		[% ELSE %] \
1300
		<option value="l">l Lærebok, brevkurs</option> \
1301
		[% END %] \
1302
	[% IF ( f33n ) %] \
1303
		<option value="n" selected="selected">n Novelle / fortelling</option> \
1304
		[% ELSE %] \
1305
		<option value="n">n Novelle / fortelling</option> \
1306
		[% END %] \
1307
	[% IF ( f33p ) %] \
1308
		<option value="p" selected="selected">p Pekebok</option> \
1309
		[% ELSE %] \
1310
		<option value="p">p Pekebok</option> \
1311
		[% END %] \
1312
	[% IF ( f33r ) %] \
1313
		<option value="r" selected="selected">r Roman</option> \
1314
		[% ELSE %] \
1315
		<option value="r">r Roman</option> \
1316
		[% END %] \
1317
	[% IF ( f33s ) %] \
1318
		<option value="s" selected="selected">s Skuespill</option> \
1319
		[% ELSE %] \
1320
		<option value="s">s Skuespill</option> \
1321
		[% END %] \
1322
	[% IF ( f33t ) %] \
1323
		<option value="t" selected="selected">t Tegneserie</option> \
1324
		[% ELSE %] \
1325
		<option value="t">t Tegneserie</option> \
1326
		[% END %] \
1327
				</select> \
1328
				</td></tr> \
1329
		<tr> \
1330
		<td>34 Biografi</td> \
1331
		<td> \
1332
        <select name="f34" id="f34"> \
1333
	[% IF ( f34 ) %] \
1334
		<option value=" " selected="selected">^ Ikke angitt</option> \
1335
		[% ELSE %] \
1336
		<option value=" ">^ Ikke angitt</option> \
1337
		[% END %] \
1338
	[% IF ( f340 ) %] \
1339
		<option value="0" selected="selected">0 Ikke biografisk materiale</option> \
1340
		[% ELSE %] \
1341
		<option value="0">0 Ikke biografisk materiale</option> \
1342
		[% END %] \
1343
	[% IF ( f341 ) %] \
1344
		<option value="1" selected="selected">1 Biografisk materiale</option> \
1345
		[% ELSE %] \
1346
		<option value="1">1 Biografisk materiale</option> \
1347
		[% END %] \
1348
	[% IF ( f34a ) %] \
1349
		<option value="a" selected="selected">a Selvbiografi</option> \
1350
		[% ELSE %] \
1351
		<option value="a">a Selvbiografi</option> \
1352
		[% END %] \
1353
	[% IF ( f34b ) %] \
1354
		<option value="b" selected="selected">b Enkeltbiografi</option> \
1355
		[% ELSE %] \
1356
		<option value="b">b Enkeltbiografi</option> \
1357
		[% END %] \
1358
	[% IF ( f34c ) %] \
1359
		<option value="c" selected="selected">c Samlingsbiografi</option> \
1360
		[% ELSE %] \
1361
		<option value="c">c Samlingsbiografi</option> \
1362
		[% END %] \
1363
	[% IF ( f34d ) %] \
1364
		<option value="d" selected="selected">d Inneholder biografisk informasjon</option> \
1365
		[% ELSE %] \
1366
		<option value="d">d Inneholder biografisk informasjon</option> \
1367
		[% END %] \
1368
		</select> \
1369
		</td></tr> \
1370
		</table>';
1371
    break;
1372
  case "per":
1373
    divOutput.innerHTML='<table> \
1374
		<tr> \
1375
		 <td>18 Periodisitet</td> \
1376
		 <td> \
1377
        <select name="f18" id="f18"> \
1378
	[% IF ( f18 ) %] \
1379
		<option value=" " selected="selected">^ Ikke angitt</option> \
1380
		[% ELSE %] \
1381
		<option value=" ">^ Ikke angitt</option> \
1382
		[% END %] \
1383
	[% IF ( f18a ) %] \
1384
		<option value="a" selected="selected">a Ã…rlig</option> \
1385
		[% ELSE %] \
1386
		<option value="a">a Ã…rlig</option> \
1387
		[% END %] \
1388
	[% IF ( f18b ) %] \
1389
		<option value="b" selected="selected">b Annenhver måned (6-8 ganger pr år)</option> \
1390
		[% ELSE %] \
1391
		<option value="b">b Annenhver måned (6-8 ganger pr år)</option> \
1392
		[% END %] \
1393
	[% IF ( f18c ) %] \
1394
		<option value="c" selected="selected">c To ganger pr uke</option> \
1395
		[% ELSE %] \
1396
		<option value="c">c To ganger pr uke</option> \
1397
		[% END %] \
1398
	[% IF ( f18d ) %] \
1399
		<option value="d" selected="selected">d Daglig (4-7 ganger pr uke)</option> \
1400
		[% ELSE %] \
1401
		<option value="d">d Daglig (4-7 ganger pr uke)</option> \
1402
		[% END %] \
1403
	[% IF ( f18e ) %] \
1404
		<option value="e" selected="selected">e Annenhver uke</option> \
1405
		[% ELSE %] \
1406
		<option value="e">e Annenhver uke</option> \
1407
		[% END %] \
1408
	[% IF ( f18f ) %] \
1409
		<option value="f" selected="selected">f To ganger pr år</option> \
1410
		[% ELSE %] \
1411
		<option value="f">f To ganger pr år</option> \
1412
		[% END %] \
1413
	[% IF ( f18g ) %] \
1414
		<option value="g" selected="selected">g Annethvert år</option> \
1415
		[% ELSE %] \
1416
		<option value="g">g Annethvert år</option> \
1417
		[% END %] \
1418
	[% IF ( f18h ) %] \
1419
		<option value="h" selected="selected">h Hvert tredje år eller sjeldnere</option> \
1420
		[% ELSE %] \
1421
		<option value="h">h Hvert tredje år eller sjeldnere</option> \
1422
		[% END %] \
1423
	[% IF ( f18i ) %] \
1424
		<option value="i" selected="selected">i Tre ganger pr uke</option> \
1425
		[% ELSE %] \
1426
		<option value="i">i Tre ganger pr uke</option> \
1427
		[% END %] \
1428
	[% IF ( f18j ) %] \
1429
		<option value="j" selected="selected">j Tre ganger pr måned</option> \
1430
		[% ELSE %] \
1431
		<option value="j">j Tre ganger pr måned</option> \
1432
		[% END %] \
1433
	[% IF ( f18k ) %] \
1434
		<option value="k" selected="selected">k Uregelmessig</option> \
1435
		[% ELSE %] \
1436
		<option value="k">k Uregelmessig</option> \
1437
		[% END %] \
1438
	[% IF ( f18m ) %] \
1439
		<option value="m" selected="selected">m Månedlig (9-12 ganger pr år)</option> \
1440
		[% ELSE %] \
1441
		<option value="m">m Månedlig (9-12 ganger pr år)</option> \
1442
		[% END %] \
1443
	[% IF ( f18q ) %] \
1444
		<option value="q" selected="selected">q Kvartalsvis</option> \
1445
		[% ELSE %] \
1446
		<option value="q">q Kvartalsvis</option> \
1447
		[% END %] \
1448
	[% IF ( f18s ) %] \
1449
		<option value="s" selected="selected">s To ganger pr måned</option> \
1450
		[% ELSE %] \
1451
		<option value="s">s To ganger pr måned</option> \
1452
		[% END %] \
1453
	[% IF ( f18t ) %] \
1454
		<option value="t" selected="selected">t Tre ganger pr år</option> \
1455
		[% ELSE %] \
1456
		<option value="t">t Tre ganger pr år</option> \
1457
		[% END %] \
1458
	[% IF ( f18u ) %] \
1459
		<option value="u" selected="selected">u Ukjent</option> \
1460
		[% ELSE %] \
1461
		<option value="u">u Ukjent</option> \
1462
		[% END %] \
1463
	[% IF ( f18w ) %] \
1464
		<option value="w" selected="selected">w Ukentlig</option> \
1465
		[% ELSE %] \
1466
		<option value="w">w Ukentlig</option> \
1467
		[% END %] \
1468
	[% IF ( f18z ) %] \
1469
		<option value="z" selected="selected">z Annen periodisitet</option> \
1470
		[% ELSE %] \
1471
		<option value="z">z Annen periodisitet</option> \
1472
		[% END %] \
1473
</select> \
1474
		 </td></tr> \
1475
		 <tr> \
1476
		 <td>19 Regularitet</td> \
1477
		 <td> \
1478
        <select name="f19" id="f19"> \
1479
	[% IF ( f19 ) %] \
1480
		<option value=" " selected="selected">^ Ikke angitt</option> \
1481
		[% ELSE %] \
1482
		<option value=" ">^ Ikke angitt</option> \
1483
		[% END %] \
1484
	[% IF ( f19n ) %] \
1485
		<option value="n" selected="selected">n Normalisert uregelmessig</option> \
1486
		[% ELSE %] \
1487
		<option value="n">n Normalisert uregelmessig</option> \
1488
		[% END %] \
1489
	[% IF ( f19r ) %] \
1490
		<option value="r" selected="selected">r Regelmessig</option> \
1491
		[% ELSE %] \
1492
		<option value="r">r Regelmessig</option> \
1493
		[% END %] \
1494
	[% IF ( f19u ) %] \
1495
		<option value="u" selected="selected">u Ikke kjent</option> \
1496
		[% ELSE %] \
1497
		<option value="u">u Ikke kjent</option> \
1498
		[% END %] \
1499
	[% IF ( f19x ) %] \
1500
		<option value="x" selected="selected">x Fullstendig uregelmessig</option> \
1501
		[% ELSE %] \
1502
		<option value="x">x Fullstendig uregelmessig</option> \
1503
		[% END %] \
1504
</select> \
1505
		 </td></tr> \
1506
		 <tr> \
1507
		 <td>20 ISSN-senter</td> \
1508
		 <td> \
1509
        <select name="f20" id="f20"> \
1510
	[% IF ( f20 ) %] \
1511
		<option value=" " selected="selected">^ Ikke angitt</option> \
1512
		[% ELSE %] \
1513
		<option value=" ">^ Ikke angitt</option> \
1514
		[% END %] \
1515
	[% IF ( f200 ) %] \
1516
		<option value="0" selected="selected">0 ISSN International Centre (Paris)</option> \
1517
		[% ELSE %] \
1518
		<option value="0">0 ISSN International Centre (Paris)</option> \
1519
		[% END %] \
1520
	[% IF ( f201 ) %] \
1521
		<option value="1" selected="selected">1 Forente stater</option> \
1522
		[% ELSE %] \
1523
		<option value="1">1 Forente stater</option> \
1524
		[% END %] \
1525
	[% IF ( f202 ) %] \
1526
		<option value="2" selected="selected">2 Storbritannia</option> \
1527
		[% ELSE %] \
1528
		<option value="2">2 Storbritannia</option> \
1529
		[% END %] \
1530
	[% IF ( f203 ) %] \
1531
		<option value="3" selected="selected">3 Australia</option> \
1532
		[% ELSE %] \
1533
		<option value="3">3 Australia</option> \
1534
		[% END %] \
1535
	[% IF ( f204 ) %] \
1536
		<option value="4" selected="selected">4 Canada</option> \
1537
		[% ELSE %] \
1538
		<option value="4">4 Canada</option> \
1539
		[% END %] \
1540
	[% IF ( f205 ) %] \
1541
		<option value="5" selected="selected">5 Moskva regionale senter</option> \
1542
		[% ELSE %] \
1543
		<option value="5">5 Moskva regionale senter</option> \
1544
		[% END %] \
1545
	[% IF ( f206 ) %] \
1546
		<option value="6" selected="selected">6 Tyskland</option> \
1547
		[% ELSE %] \
1548
		<option value="6">6 Tyskland</option> \
1549
		[% END %] \
1550
	[% IF ( f207 ) %] \
1551
		<option value="7" selected="selected">7 Frankrike</option> \
1552
		[% ELSE %] \
1553
		<option value="7">7 Frankrike</option> \
1554
		[% END %] \
1555
	[% IF ( f20a ) %] \
1556
		<option value="a" selected="selected">a Finland</option> \
1557
		[% ELSE %] \
1558
		<option value="a">a Finland</option> \
1559
		[% END %] \
1560
	[% IF ( f20f ) %] \
1561
		<option value="f" selected="selected">f Sverige</option> \
1562
		[% ELSE %] \
1563
		<option value="f">f Sverige</option> \
1564
		[% END %] \
1565
	[% IF ( f20h ) %] \
1566
		<option value="h" selected="selected">h Danmark</option> \
1567
		[% ELSE %] \
1568
		<option value="h">h Danmark</option> \
1569
		[% END %] \
1570
	[% IF ( f20r ) %] \
1571
		<option value="r" selected="selected">r Norge</option> \
1572
		[% ELSE %] \
1573
		<option value="r">r Norge</option> \
1574
		[% END %] \
1575
	[% IF ( f20z ) %] \
1576
		<option value="z" selected="selected">z Andre ISSN-sentre</option> \
1577
		[% ELSE %] \
1578
		<option value="z">z Andre ISSN-sentre</option> \
1579
		[% END %] \
1580
</select> \
1581
		 </td></tr> \
1582
		 <tr> \
1583
		 <td>21 Type periodikum</td> \
1584
		 <td> \
1585
        <select name="f21" id="f21"> \
1586
	[% IF ( f21 ) %] \
1587
		<option value=" " selected="selected">^ Ikke angitt</option> \
1588
		[% ELSE %] \
1589
		<option value=" ">^ Ikke angitt</option> \
1590
		[% END %] \
1591
	[% IF ( f21a ) %] \
1592
		<option value="a" selected="selected">a Ã…rbok</option> \
1593
		[% ELSE %] \
1594
		<option value="a">a Ã…rbok</option> \
1595
		[% END %] \
1596
	[% IF ( f21m ) %] \
1597
		<option value="m" selected="selected">m Monografiserie</option> \
1598
		[% ELSE %] \
1599
		<option value="m">m Monografiserie</option> \
1600
		[% END %] \
1601
	[% IF ( f21n ) %] \
1602
		<option value="n" selected="selected">n Avis</option> \
1603
		[% ELSE %] \
1604
		<option value="n">n Avis</option> \
1605
		[% END %] \
1606
	[% IF ( f21p ) %] \
1607
		<option value="p" selected="selected">p Tidsskrift</option> \
1608
		[% ELSE %] \
1609
		<option value="p">p Tidsskrift</option> \
1610
		[% END %] \
1611
	[% IF ( f21z ) %] \
1612
		<option value="z" selected="selected">z Andre typer periodika</option> \
1613
		[% ELSE %] \
1614
		<option value="z">z Andre typer periodika</option> \
1615
		[% END %] \
1616
</select> \
1617
		 </td></tr> \
1618
		 <tr> \
1619
		 <td>22 Målgruppe / Intellektuelt nivå</td> \
1620
		 <td> \
1621
        <select name="f22" id="f22"> \
1622
	[% IF ( f22 ) %] \
1623
		<option value=" " selected="selected">^ Ikke angitt</option> \
1624
		[% ELSE %] \
1625
		<option value=" ">^ Ikke angitt</option> \
1626
		[% END %] \
1627
	[% IF ( f22a ) %] \
1628
		<option value="a" selected="selected">a Voksne</option> \
1629
		[% ELSE %] \
1630
		<option value="a">a Voksne</option> \
1631
		[% END %] \
1632
	[% IF ( f22b ) %] \
1633
		<option value="b" selected="selected">b Tegneserier for voksne</option> \
1634
		[% ELSE %] \
1635
		<option value="b">b Tegneserier for voksne</option> \
1636
		[% END %] \
1637
	[% IF ( f22f ) %] \
1638
		<option value="f" selected="selected">f Spesialisert</option> \
1639
		[% ELSE %] \
1640
		<option value="f">f Spesialisert</option> \
1641
		[% END %] \
1642
	[% IF ( f22g ) %] \
1643
		<option value="g" selected="selected">g Generell</option> \
1644
		[% ELSE %] \
1645
		<option value="g">g Generell</option> \
1646
		[% END %] \
1647
	[% IF ( f22j ) %] \
1648
		<option value="j" selected="selected">j Barn og ungdom</option> \
1649
		[% ELSE %] \
1650
		<option value="j">j Barn og ungdom</option> \
1651
		[% END %] \
1652
	[% IF ( f22k ) %] \
1653
		<option value="k" selected="selected">k Tegneserier</option> \
1654
		[% ELSE %] \
1655
		<option value="k">k Tegneserier</option> \
1656
		[% END %] \
1657
	[% IF ( f22l ) %] \
1658
		<option value="l" selected="selected">l Barn i alderen til og med 5 år</option> \
1659
		[% ELSE %] \
1660
		<option value="l">l Barn i alderen til og med 5 år</option> \
1661
		[% END %] \
1662
	[% IF ( f22m ) %] \
1663
		<option value="m" selected="selected">m Elever på 1. til 3. klassetrinn</option> \
1664
		[% ELSE %] \
1665
		<option value="m">m Elever på 1. til 3. klassetrinn</option> \
1666
		[% END %] \
1667
	[% IF ( f22n ) %] \
1668
		<option value="n" selected="selected">n Elever på 4. og 5. klassetrinn</option> \
1669
		[% ELSE %] \
1670
		<option value="n">n Elever på 4. og 5. klassetrinn</option> \
1671
		[% END %] \
1672
	[% IF ( f22o ) %] \
1673
		<option value="o" selected="selected">o Elever på 6. og 7. klassetrinn</option> \
1674
		[% ELSE %] \
1675
		<option value="o">o Elever på 6. og 7. klassetrinn</option> \
1676
		[% END %] \
1677
	[% IF ( f22p ) %] \
1678
		<option value="p" selected="selected">p Elever på ungdomstrinnet</option> \
1679
		[% ELSE %] \
1680
		<option value="p">p Elever på ungdomstrinnet</option> \
1681
		[% END %] \
1682
	[% IF ( f22q ) %] \
1683
		<option value="q" selected="selected">q Lettlest</option> \
1684
		[% ELSE %] \
1685
		<option value="q">q Lettlest</option> \
1686
		[% END %] \
1687
	[% IF ( f22r ) %] \
1688
		<option value="r" selected="selected">r For psykisk utviklingshemmede</option> \
1689
		[% ELSE %] \
1690
		<option value="r">r For psykisk utviklingshemmede</option> \
1691
		[% END %] \
1692
	[% IF ( f22s ) %] \
1693
		<option value="s" selected="selected">s Storskrift</option> \
1694
		[% ELSE %] \
1695
		<option value="s">s Storskrift</option> \
1696
		[% END %] \
1697
	[% IF ( f22u ) %] \
1698
		<option value="u" selected="selected">u Ukjent</option> \
1699
		[% ELSE %] \
1700
		<option value="u">u Ukjent</option> \
1701
		[% END %] \
1702
	[% IF ( f22v ) %] \
1703
		<option value="v" selected="selected">v Tegneserier for barn i alderen til og med 5 år</option> \
1704
		[% ELSE %] \
1705
		<option value="v">v Tegneserier for barn i alderen til og med 5 år</option> \
1706
		[% END %] \
1707
	[% IF ( f22w ) %] \
1708
		<option value="w" selected="selected">w Tegneserier for elever på 1. til 3. klassetrinn</option> \
1709
		[% ELSE %] \
1710
		<option value="w">w Tegneserier for elever på 1. til 3. klassetrinn</option> \
1711
		[% END %] \
1712
	[% IF ( f22x ) %] \
1713
		<option value="x" selected="selected">x Tegneserier for elever på 4. og 5. klassetrinn</option> \
1714
		[% ELSE %] \
1715
		<option value="x">x Tegneserier for elever på 4. og 5. klassetrinn</option> \
1716
		[% END %] \
1717
	[% IF ( f22y ) %] \
1718
		<option value="y" selected="selected">y Tegneserier for elever på 6. og 7. klassetrinn</option> \
1719
		[% ELSE %] \
1720
		<option value="y">y Tegneserier for elever på 6. og 7. klassetrinn</option> \
1721
		[% END %] \
1722
	[% IF ( f22z ) %] \
1723
		<option value="z" selected="selected">z Tegneserier for elever på ungdomstrinnet</option> \
1724
		[% ELSE %] \
1725
		<option value="z">z Tegneserier for elever på ungdomstrinnet</option> \
1726
		[% END %] \
1727
</select> \
1728
		 </td></tr> \
1729
		 <tr> \
1730
		 <td>23 Materialform</td> \
1731
		 <td> \
1732
        <select name="f23" id="f23"> \
1733
	[% IF ( f23 ) %] \
1734
		<option value=" " selected="selected">^ Ikke angitt</option> \
1735
		[% ELSE %] \
1736
		<option value=" ">^ Ikke angitt</option> \
1737
		[% END %] \
1738
	[% IF ( f23a ) %] \
1739
		<option value="a" selected="selected">a Mikrofilm</option> \
1740
		[% ELSE %] \
1741
		<option value="a">a Mikrofilm</option> \
1742
		[% END %] \
1743
	[% IF ( f23b ) %] \
1744
		<option value="b" selected="selected">b Mikrofilmkort</option> \
1745
		[% ELSE %] \
1746
		<option value="b">b Mikrofilmkort</option> \
1747
		[% END %] \
1748
	[% IF ( f23c ) %] \
1749
		<option value="c" selected="selected">c Mikro-opak</option> \
1750
		[% ELSE %] \
1751
		<option value="c">c Mikro-opak</option> \
1752
		[% END %] \
1753
	[% IF ( f23f ) %] \
1754
		<option value="f" selected="selected">f Braille</option> \
1755
		[% ELSE %] \
1756
		<option value="f">f Braille</option> \
1757
		[% END %] \
1758
	[% IF ( f23r ) %] \
1759
		<option value="r" selected="selected">r Ordinært trykk (øye-lesbar)</option> \
1760
		[% ELSE %] \
1761
		<option value="r">r Ordinært trykk (øye-lesbar)</option> \
1762
		[% END %] \
1763
</select> \
1764
		 </td></tr> \
1765
		 <tr> \
1766
		 <td>24 Innhold</td> \
1767
		 <td> \
1768
        <select name="f24" id="f24"> \
1769
	[% IF ( f24 ) %] \
1770
		<option value=" " selected="selected">^ Ikke angitt</option> \
1771
		[% ELSE %] \
1772
		<option value=" ">^ Ikke angitt</option> \
1773
		[% END %] \
1774
	[% IF ( f24a ) %] \
1775
		<option value="a" selected="selected">a Sammendrag(abstracts)/Referatorganer</option> \
1776
		[% ELSE %] \
1777
		<option value="a">a Sammendrag(abstracts)/Referatorganer</option> \
1778
		[% END %] \
1779
	[% IF ( f24b ) %] \
1780
		<option value="b" selected="selected">b Bibliografier</option> \
1781
		[% ELSE %] \
1782
		<option value="b">b Bibliografier</option> \
1783
		[% END %] \
1784
	[% IF ( f24c ) %] \
1785
		<option value="c" selected="selected">c Kataloger</option> \
1786
		[% ELSE %] \
1787
		<option value="c">c Kataloger</option> \
1788
		[% END %] \
1789
	[% IF ( f24d ) %] \
1790
		<option value="d" selected="selected">d Ordbøker</option> \
1791
		[% ELSE %] \
1792
		<option value="d">d Ordbøker</option> \
1793
		[% END %] \
1794
	[% IF ( f24e ) %] \
1795
		<option value="e" selected="selected">e Konversasjonsleksika</option> \
1796
		[% ELSE %] \
1797
		<option value="e">e Konversasjonsleksika</option> \
1798
		[% END %] \
1799
	[% IF ( f24f ) %] \
1800
		<option value="f" selected="selected">f Håndbøker</option> \
1801
		[% ELSE %] \
1802
		<option value="f">f Håndbøker</option> \
1803
		[% END %] \
1804
	[% IF ( f24h ) %] \
1805
		<option value="h" selected="selected">h Referanseverk</option> \
1806
		[% ELSE %] \
1807
		<option value="h">h Referanseverk</option> \
1808
		[% END %] \
1809
	[% IF ( f24i ) %] \
1810
		<option value="i" selected="selected">i Registre</option> \
1811
		[% ELSE %] \
1812
		<option value="i">i Registre</option> \
1813
		[% END %] \
1814
	[% IF ( f24k ) %] \
1815
		<option value="k" selected="selected">k Diskografier</option> \
1816
		[% ELSE %] \
1817
		<option value="k">k Diskografier</option> \
1818
		[% END %] \
1819
	[% IF ( f24l ) %] \
1820
		<option value="l" selected="selected">l Lover og forskrifter</option> \
1821
		[% ELSE %] \
1822
		<option value="l">l Lover og forskrifter</option> \
1823
		[% END %] \
1824
	[% IF ( f24m ) %] \
1825
		<option value="m" selected="selected">m Hovedoppgaver/diplomoppgaver</option> \
1826
		[% ELSE %] \
1827
		<option value="m">m Hovedoppgaver/diplomoppgaver</option> \
1828
		[% END %] \
1829
	[% IF ( f24n ) %] \
1830
		<option value="n" selected="selected">n Oversiktsverker innenfor et emne</option> \
1831
		[% ELSE %] \
1832
		<option value="n">n Oversiktsverker innenfor et emne</option> \
1833
		[% END %] \
1834
	[% IF ( f24o ) %] \
1835
		<option value="o" selected="selected">o Anmeldelser</option> \
1836
		[% ELSE %] \
1837
		<option value="o">o Anmeldelser</option> \
1838
		[% END %] \
1839
	[% IF ( f24q ) %] \
1840
		<option value="q" selected="selected">q Filmografier</option> \
1841
		[% ELSE %] \
1842
		<option value="q">q Filmografier</option> \
1843
		[% END %] \
1844
	[% IF ( f24r ) %] \
1845
		<option value="r" selected="selected">r Adressebøker</option> \
1846
		[% ELSE %] \
1847
		<option value="r">r Adressebøker</option> \
1848
		[% END %] \
1849
	[% IF ( f24s ) %] \
1850
		<option value="s" selected="selected">s Statistikker</option> \
1851
		[% ELSE %] \
1852
		<option value="s">s Statistikker</option> \
1853
		[% END %] \
1854
	[% IF ( f24t ) %] \
1855
		<option value="t" selected="selected">t Tekniske rapporter</option> \
1856
		[% ELSE %] \
1857
		<option value="t">t Tekniske rapporter</option> \
1858
		[% END %] \
1859
	[% IF ( f24x ) %] \
1860
		<option value="x" selected="selected">x Doktoravhandlinger/lisensiat-avhandlinger</option> \
1861
		[% ELSE %] \
1862
		<option value="x">x Doktoravhandlinger/lisensiat-avhandlinger</option> \
1863
		[% END %] \
1864
	[% IF ( f24z ) %] \
1865
		<option value="z" selected="selected">z Ingen av de nevnte typene innhold</option> \
1866
		[% ELSE %] \
1867
		<option value="z">z Ingen av de nevnte typene innhold</option> \
1868
		[% END %] \
1869
</select> \
1870
		 </td></tr> \
1871
		 <tr> \
1872
		 <td>25 Innhold</td> \
1873
		 <td> \
1874
        <select name="f25" id="f25"> \
1875
	[% IF ( f25 ) %] \
1876
		<option value=" " selected="selected">^ Ikke angitt</option> \
1877
		[% ELSE %] \
1878
		<option value=" ">^ Ikke angitt</option> \
1879
		[% END %] \
1880
	[% IF ( f25a ) %] \
1881
		<option value="a" selected="selected">a Sammendrag(abstracts)/Referatorganer</option> \
1882
		[% ELSE %] \
1883
		<option value="a">a Sammendrag(abstracts)/Referatorganer</option> \
1884
		[% END %] \
1885
	[% IF ( f25b ) %] \
1886
		<option value="b" selected="selected">b Bibliografier</option> \
1887
		[% ELSE %] \
1888
		<option value="b">b Bibliografier</option> \
1889
		[% END %] \
1890
	[% IF ( f25c ) %] \
1891
		<option value="c" selected="selected">c Kataloger</option> \
1892
		[% ELSE %] \
1893
		<option value="c">c Kataloger</option> \
1894
		[% END %] \
1895
	[% IF ( f25d ) %] \
1896
		<option value="d" selected="selected">d Ordbøker</option> \
1897
		[% ELSE %] \
1898
		<option value="d">d Ordbøker</option> \
1899
		[% END %] \
1900
	[% IF ( f25e ) %] \
1901
		<option value="e" selected="selected">e Konversasjonsleksika</option> \
1902
		[% ELSE %] \
1903
		<option value="e">e Konversasjonsleksika</option> \
1904
		[% END %] \
1905
	[% IF ( f25f ) %] \
1906
		<option value="f" selected="selected">f Håndbøker</option> \
1907
		[% ELSE %] \
1908
		<option value="f">f Håndbøker</option> \
1909
		[% END %] \
1910
	[% IF ( f25h ) %] \
1911
		<option value="h" selected="selected">h Referanseverk</option> \
1912
		[% ELSE %] \
1913
		<option value="h">h Referanseverk</option> \
1914
		[% END %] \
1915
	[% IF ( f25i ) %] \
1916
		<option value="i" selected="selected">i Registre</option> \
1917
		[% ELSE %] \
1918
		<option value="i">i Registre</option> \
1919
		[% END %] \
1920
	[% IF ( f25k ) %] \
1921
		<option value="k" selected="selected">k Diskografier</option> \
1922
		[% ELSE %] \
1923
		<option value="k">k Diskografier</option> \
1924
		[% END %] \
1925
	[% IF ( f25l ) %] \
1926
		<option value="l" selected="selected">l Lover og forskrifter</option> \
1927
		[% ELSE %] \
1928
		<option value="l">l Lover og forskrifter</option> \
1929
		[% END %] \
1930
	[% IF ( f25m ) %] \
1931
		<option value="m" selected="selected">m Hovedoppgaver/diplomoppgaver</option> \
1932
		[% ELSE %] \
1933
		<option value="m">m Hovedoppgaver/diplomoppgaver</option> \
1934
		[% END %] \
1935
	[% IF ( f25n ) %] \
1936
		<option value="n" selected="selected">n Oversiktsverker innenfor et emne</option> \
1937
		[% ELSE %] \
1938
		<option value="n">n Oversiktsverker innenfor et emne</option> \
1939
		[% END %] \
1940
	[% IF ( f25o ) %] \
1941
		<option value="o" selected="selected">o Anmeldelser</option> \
1942
		[% ELSE %] \
1943
		<option value="o">o Anmeldelser</option> \
1944
		[% END %] \
1945
	[% IF ( f25q ) %] \
1946
		<option value="q" selected="selected">q Filmografier</option> \
1947
		[% ELSE %] \
1948
		<option value="q">q Filmografier</option> \
1949
		[% END %] \
1950
	[% IF ( f25r ) %] \
1951
		<option value="r" selected="selected">r Adressebøker</option> \
1952
		[% ELSE %] \
1953
		<option value="r">r Adressebøker</option> \
1954
		[% END %] \
1955
	[% IF ( f25s ) %] \
1956
		<option value="s" selected="selected">s Statistikker</option> \
1957
		[% ELSE %] \
1958
		<option value="s">s Statistikker</option> \
1959
		[% END %] \
1960
	[% IF ( f25t ) %] \
1961
		<option value="t" selected="selected">t Tekniske rapporter</option> \
1962
		[% ELSE %] \
1963
		<option value="t">t Tekniske rapporter</option> \
1964
		[% END %] \
1965
	[% IF ( f25x ) %] \
1966
		<option value="x" selected="selected">x Doktoravhandlinger/lisensiat-avhandlinger</option> \
1967
		[% ELSE %] \
1968
		<option value="x">x Doktoravhandlinger/lisensiat-avhandlinger</option> \
1969
		[% END %] \
1970
	[% IF ( f25z ) %] \
1971
		<option value="z" selected="selected">z Ingen av de nevnte typene innhold</option> \
1972
		[% ELSE %] \
1973
		<option value="z">z Ingen av de nevnte typene innhold</option> \
1974
		[% END %] \
1975
</select> \
1976
		 </td></tr> \
1977
		 <tr> \
1978
		 <td>26 Innhold</td> \
1979
		 <td> \
1980
        <select name="f26" id="f26"> \
1981
	[% IF ( f26 ) %] \
1982
		<option value=" " selected="selected">^ Ikke angitt</option> \
1983
		[% ELSE %] \
1984
		<option value=" ">^ Ikke angitt</option> \
1985
		[% END %] \
1986
	[% IF ( f26a ) %] \
1987
		<option value="a" selected="selected">a Sammendrag(abstracts)/Referatorganer</option> \
1988
		[% ELSE %] \
1989
		<option value="a">a Sammendrag(abstracts)/Referatorganer</option> \
1990
		[% END %] \
1991
	[% IF ( f26b ) %] \
1992
		<option value="b" selected="selected">b Bibliografier</option> \
1993
		[% ELSE %] \
1994
		<option value="b">b Bibliografier</option> \
1995
		[% END %] \
1996
	[% IF ( f26c ) %] \
1997
		<option value="c" selected="selected">c Kataloger</option> \
1998
		[% ELSE %] \
1999
		<option value="c">c Kataloger</option> \
2000
		[% END %] \
2001
	[% IF ( f26d ) %] \
2002
		<option value="d" selected="selected">d Ordbøker</option> \
2003
		[% ELSE %] \
2004
		<option value="d">d Ordbøker</option> \
2005
		[% END %] \
2006
	[% IF ( f26e ) %] \
2007
		<option value="e" selected="selected">e Konversasjonsleksika</option> \
2008
		[% ELSE %] \
2009
		<option value="e">e Konversasjonsleksika</option> \
2010
		[% END %] \
2011
	[% IF ( f26f ) %] \
2012
		<option value="f" selected="selected">f Håndbøker</option> \
2013
		[% ELSE %] \
2014
		<option value="f">f Håndbøker</option> \
2015
		[% END %] \
2016
	[% IF ( f26h ) %] \
2017
		<option value="h" selected="selected">h Referanseverk</option> \
2018
		[% ELSE %] \
2019
		<option value="h">h Referanseverk</option> \
2020
		[% END %] \
2021
	[% IF ( f26i ) %] \
2022
		<option value="i" selected="selected">i Registre</option> \
2023
		[% ELSE %] \
2024
		<option value="i">i Registre</option> \
2025
		[% END %] \
2026
	[% IF ( f26k ) %] \
2027
		<option value="k" selected="selected">k Diskografier</option> \
2028
		[% ELSE %] \
2029
		<option value="k">k Diskografier</option> \
2030
		[% END %] \
2031
	[% IF ( f26l ) %] \
2032
		<option value="l" selected="selected">l Lover og forskrifter</option> \
2033
		[% ELSE %] \
2034
		<option value="l">l Lover og forskrifter</option> \
2035
		[% END %] \
2036
	[% IF ( f26m ) %] \
2037
		<option value="m" selected="selected">m Hovedoppgaver/diplomoppgaver</option> \
2038
		[% ELSE %] \
2039
		<option value="m">m Hovedoppgaver/diplomoppgaver</option> \
2040
		[% END %] \
2041
	[% IF ( f26n ) %] \
2042
		<option value="n" selected="selected">n Oversiktsverker innenfor et emne</option> \
2043
		[% ELSE %] \
2044
		<option value="n">n Oversiktsverker innenfor et emne</option> \
2045
		[% END %] \
2046
	[% IF ( f26o ) %] \
2047
		<option value="o" selected="selected">o Anmeldelser</option> \
2048
		[% ELSE %] \
2049
		<option value="o">o Anmeldelser</option> \
2050
		[% END %] \
2051
	[% IF ( f26q ) %] \
2052
		<option value="q" selected="selected">q Filmografier</option> \
2053
		[% ELSE %] \
2054
		<option value="q">q Filmografier</option> \
2055
		[% END %] \
2056
	[% IF ( f26r ) %] \
2057
		<option value="r" selected="selected">r Adressebøker</option> \
2058
		[% ELSE %] \
2059
		<option value="r">r Adressebøker</option> \
2060
		[% END %] \
2061
	[% IF ( f26s ) %] \
2062
		<option value="s" selected="selected">s Statistikker</option> \
2063
		[% ELSE %] \
2064
		<option value="s">s Statistikker</option> \
2065
		[% END %] \
2066
	[% IF ( f26t ) %] \
2067
		<option value="t" selected="selected">t Tekniske rapporter</option> \
2068
		[% ELSE %] \
2069
		<option value="t">t Tekniske rapporter</option> \
2070
		[% END %] \
2071
	[% IF ( f26x ) %] \
2072
		<option value="x" selected="selected">x Doktoravhandlinger/lisensiat-avhandlinger</option> \
2073
		[% ELSE %] \
2074
		<option value="x">x Doktoravhandlinger/lisensiat-avhandlinger</option> \
2075
		[% END %] \
2076
	[% IF ( f26z ) %] \
2077
		<option value="z" selected="selected">z Ingen av de nevnte typene innhold</option> \
2078
		[% ELSE %] \
2079
		<option value="z">z Ingen av de nevnte typene innhold</option> \
2080
		[% END %] \
2081
</select> \
2082
		 </td></tr> \
2083
		 <tr> \
2084
		 <td>27 Innhold</td> \
2085
		 <td> \
2086
        <select name="f27" id="f27"> \
2087
	[% IF ( f27 ) %] \
2088
		<option value=" " selected="selected">^ Ikke angitt</option> \
2089
		[% ELSE %] \
2090
		<option value=" ">^ Ikke angitt</option> \
2091
		[% END %] \
2092
	[% IF ( f27a ) %] \
2093
		<option value="a" selected="selected">a Sammendrag(abstracts)/Referatorganer</option> \
2094
		[% ELSE %] \
2095
		<option value="a">a Sammendrag(abstracts)/Referatorganer</option> \
2096
		[% END %] \
2097
	[% IF ( f27b ) %] \
2098
		<option value="b" selected="selected">b Bibliografier</option> \
2099
		[% ELSE %] \
2100
		<option value="b">b Bibliografier</option> \
2101
		[% END %] \
2102
	[% IF ( f27c ) %] \
2103
		<option value="c" selected="selected">c Kataloger</option> \
2104
		[% ELSE %] \
2105
		<option value="c">c Kataloger</option> \
2106
		[% END %] \
2107
	[% IF ( f27d ) %] \
2108
		<option value="d" selected="selected">d Ordbøker</option> \
2109
		[% ELSE %] \
2110
		<option value="d">d Ordbøker</option> \
2111
		[% END %] \
2112
	[% IF ( f27e ) %] \
2113
		<option value="e" selected="selected">e Konversasjonsleksika</option> \
2114
		[% ELSE %] \
2115
		<option value="e">e Konversasjonsleksika</option> \
2116
		[% END %] \
2117
	[% IF ( f27f ) %] \
2118
		<option value="f" selected="selected">f Håndbøker</option> \
2119
		[% ELSE %] \
2120
		<option value="f">f Håndbøker</option> \
2121
		[% END %] \
2122
	[% IF ( f27h ) %] \
2123
		<option value="h" selected="selected">h Referanseverk</option> \
2124
		[% ELSE %] \
2125
		<option value="h">h Referanseverk</option> \
2126
		[% END %] \
2127
	[% IF ( f27i ) %] \
2128
		<option value="i" selected="selected">i Registre</option> \
2129
		[% ELSE %] \
2130
		<option value="i">i Registre</option> \
2131
		[% END %] \
2132
	[% IF ( f27k ) %] \
2133
		<option value="k" selected="selected">k Diskografier</option> \
2134
		[% ELSE %] \
2135
		<option value="k">k Diskografier</option> \
2136
		[% END %] \
2137
	[% IF ( f27l ) %] \
2138
		<option value="l" selected="selected">l Lover og forskrifter</option> \
2139
		[% ELSE %] \
2140
		<option value="l">l Lover og forskrifter</option> \
2141
		[% END %] \
2142
	[% IF ( f27m ) %] \
2143
		<option value="m" selected="selected">m Hovedoppgaver/diplomoppgaver</option> \
2144
		[% ELSE %] \
2145
		<option value="m">m Hovedoppgaver/diplomoppgaver</option> \
2146
		[% END %] \
2147
	[% IF ( f27n ) %] \
2148
		<option value="n" selected="selected">n Oversiktsverker innenfor et emne</option> \
2149
		[% ELSE %] \
2150
		<option value="n">n Oversiktsverker innenfor et emne</option> \
2151
		[% END %] \
2152
	[% IF ( f27o ) %] \
2153
		<option value="o" selected="selected">o Anmeldelser</option> \
2154
		[% ELSE %] \
2155
		<option value="o">o Anmeldelser</option> \
2156
		[% END %] \
2157
	[% IF ( f27q ) %] \
2158
		<option value="q" selected="selected">q Filmografier</option> \
2159
		[% ELSE %] \
2160
		<option value="q">q Filmografier</option> \
2161
		[% END %] \
2162
	[% IF ( f27r ) %] \
2163
		<option value="r" selected="selected">r Adressebøker</option> \
2164
		[% ELSE %] \
2165
		<option value="r">r Adressebøker</option> \
2166
		[% END %] \
2167
	[% IF ( f27s ) %] \
2168
		<option value="s" selected="selected">s Statistikker</option> \
2169
		[% ELSE %] \
2170
		<option value="s">s Statistikker</option> \
2171
		[% END %] \
2172
	[% IF ( f27t ) %] \
2173
		<option value="t" selected="selected">t Tekniske rapporter</option> \
2174
		[% ELSE %] \
2175
		<option value="t">t Tekniske rapporter</option> \
2176
		[% END %] \
2177
	[% IF ( f27x ) %] \
2178
		<option value="x" selected="selected">x Doktoravhandlinger/lisensiat-avhandlinger</option> \
2179
		[% ELSE %] \
2180
		<option value="x">x Doktoravhandlinger/lisensiat-avhandlinger</option> \
2181
		[% END %] \
2182
	[% IF ( f27z ) %] \
2183
		<option value="z" selected="selected">z Ingen av de nevnte typene innhold</option> \
2184
		[% ELSE %] \
2185
		<option value="z">z Ingen av de nevnte typene innhold</option> \
2186
		[% END %] \
2187
</select> \
2188
		 </td></tr> \
2189
		 <tr> \
2190
		 <td>28 Offentlig publikasjon</td> \
2191
		 <td> \
2192
        <select name="f28" id="f28"> \
2193
	[% IF ( f28 ) %] \
2194
		<option value=" " selected="selected">^ Ikke angitt</option> \
2195
		[% ELSE %] \
2196
		<option value=" ">^ Ikke angitt</option> \
2197
		[% END %] \
2198
	[% IF ( f280 ) %] \
2199
		<option value="0" selected="selected">0 Ikke offentlig publikasjon</option> \
2200
		[% ELSE %] \
2201
		<option value="0">0 Ikke offentlig publikasjon</option> \
2202
		[% END %] \
2203
	[% IF ( f281 ) %] \
2204
		<option value="1" selected="selected">1 Offentlig publikasjon</option> \
2205
		[% ELSE %] \
2206
		<option value="1">1 Offentlig publikasjon</option> \
2207
		[% END %] \
2208
	[% IF ( f28b ) %] \
2209
		<option value="b" selected="selected">b Kommunal publikasjon</option> \
2210
		[% ELSE %] \
2211
		<option value="b">b Kommunal publikasjon</option> \
2212
		[% END %] \
2213
	[% IF ( f28c ) %] \
2214
		<option value="c" selected="selected">c Fylkeskommunal publikasjon</option> \
2215
		[% ELSE %] \
2216
		<option value="c">c Fylkeskommunal publikasjon</option> \
2217
		[% END %] \
2218
	[% IF ( f28d ) %] \
2219
		<option value="d" selected="selected">d Publikasjon fra regjeringer, departementer, direktorater, offentlige utvalg o.l.</option> \
2220
		[% ELSE %] \
2221
		<option value="d">d Publikasjon fra regjeringer, departementer, direktorater, offentlige utvalg o.l.</option> \
2222
		[% END %] \
2223
	[% IF ( f28e ) %] \
2224
		<option value="e" selected="selected">e Publikasjon fra andre statlige institusjoner, f.eks. Statens kartverk</option> \
2225
		[% ELSE %] \
2226
		<option value="e">e Publikasjon fra andre statlige institusjoner, f.eks. Statens kartverk</option> \
2227
		[% END %] \
2228
</select> \
2229
		 </td></tr> \
2230
		 <tr> \
2231
		 <td>29 Konferanse</td> \
2232
		 <td> \
2233
        <select name="f29" id="f29"> \
2234
	[% IF ( f29 ) %] \
2235
		<option value=" " selected="selected">^ Ikke angitt</option> \
2236
		[% ELSE %] \
2237
		<option value=" ">^ Ikke angitt</option> \
2238
		[% END %] \
2239
	[% IF ( f290 ) %] \
2240
		<option value="0" selected="selected">0 Dokumentet er ikke en konferansepublikasjon</option> \
2241
		[% ELSE %] \
2242
		<option value="0">0 Dokumentet er ikke en konferansepublikasjon</option> \
2243
		[% END %] \
2244
	[% IF ( f291 ) %] \
2245
		<option value="1" selected="selected">1 Dokumentet er en konferansepublikasjon</option> \
2246
		[% ELSE %] \
2247
		<option value="1">1 Dokumentet er en konferansepublikasjon</option> \
2248
		[% END %] \
2249
</select> \
2250
		 </td></tr> \
2251
		 <tr> \
2252
		 <td>30 Udefinert</td> \
2253
		 <td> \
2254
		 <input type="hidden" name="f30" id="f30" value=" " /> \
2255
		 </td></tr> \
2256
		 <tr> \
2257
		 <td>31 Register</td> \
2258
		 <td> \
2259
        <select name="f31" id="f31"> \
2260
	[% IF ( f31 ) %] \
2261
		<option value=" " selected="selected">^ Ikke angitt</option> \
2262
		[% ELSE %] \
2263
		<option value=" ">^ Ikke angitt</option> \
2264
		[% END %] \
2265
	[% IF ( f310 ) %] \
2266
		<option value="0" selected="selected">0 Dokumentet har ikke register</option> \
2267
		[% ELSE %] \
2268
		<option value="0">0 Dokumentet har ikke register</option> \
2269
		[% END %] \
2270
	[% IF ( f311 ) %] \
2271
		<option value="1" selected="selected">1 Dokumentet har register</option> \
2272
		[% ELSE %] \
2273
		<option value="1">1 Dokumentet har register</option> \
2274
		[% END %] \
2275
	[% IF ( f31b ) %] \
2276
		<option value="b" selected="selected">b Register for hele bindet finnes i bindets siste hefte</option> \
2277
		[% ELSE %] \
2278
		<option value="b">b Register for hele bindet finnes i bindets siste hefte</option> \
2279
		[% END %] \
2280
	[% IF ( f31e ) %] \
2281
		<option value="e" selected="selected">e Register for hele bindet finnes i første hefte av neste bind</option> \
2282
		[% ELSE %] \
2283
		<option value="e">e Register for hele bindet finnes i første hefte av neste bind</option> \
2284
		[% END %] \
2285
	[% IF ( f31h ) %] \
2286
		<option value="h" selected="selected">h Registeret utgis separat</option> \
2287
		[% ELSE %] \
2288
		<option value="h">h Registeret utgis separat</option> \
2289
		[% END %] \
2290
	[% IF ( f31z ) %] \
2291
		<option value="z" selected="selected">z Registeret tilgjengelig på annet vis</option> \
2292
		[% ELSE %] \
2293
		<option value="z">z Registeret tilgjengelig på annet vis</option> \
2294
		[% END %] \
2295
</select> \
2296
		 </td></tr> \
2297
		 		 <tr> \
2298
		 <td>32 Udefinert</td> \
2299
		 <td> \
2300
		 <input type="hidden" name="f32" id="f32" value=" " /> \
2301
		 </td></tr> \
2302
		 <tr> \
2303
		 <td>33 Tittelens originale alfabet eller skriftsystem</td> \
2304
		 <td> \
2305
        <select name="f33" id="f33"> \
2306
	[% IF ( f33 ) %] \
2307
		<option value=" " selected="selected">^ Ikke angitt</option> \
2308
		[% ELSE %] \
2309
		<option value=" ">^ Ikke angitt</option> \
2310
		[% END %] \
2311
	[% IF ( f33a ) %] \
2312
		<option value="a" selected="selected">a Grunnleggende latinsk alfabet</option> \
2313
		[% ELSE %] \
2314
		<option value="a">a Grunnleggende latinsk alfabet</option> \
2315
		[% END %] \
2316
	[% IF ( f33b ) %] \
2317
		<option value="b" selected="selected">b Utvidet latinsk alfabet</option> \
2318
		[% ELSE %] \
2319
		<option value="b">b Utvidet latinsk alfabet</option> \
2320
		[% END %] \
2321
	[% IF ( f33c ) %] \
2322
		<option value="c" selected="selected">c Kyrillisk alfabet</option> \
2323
		[% ELSE %] \
2324
		<option value="c">c Kyrillisk alfabet</option> \
2325
		[% END %] \
2326
	[% IF ( f33d ) %] \
2327
		<option value="d" selected="selected">d Japanske tegn</option> \
2328
		[% ELSE %] \
2329
		<option value="d">d Japanske tegn</option> \
2330
		[% END %] \
2331
	[% IF ( f33e ) %] \
2332
		<option value="e" selected="selected">e Kinesiske tegn</option> \
2333
		[% ELSE %] \
2334
		<option value="e">e Kinesiske tegn</option> \
2335
		[% END %] \
2336
	[% IF ( f33f ) %] \
2337
		<option value="f" selected="selected">f Arabisk alfabet</option> \
2338
		[% ELSE %] \
2339
		<option value="f">f Arabisk alfabet</option> \
2340
		[% END %] \
2341
	[% IF ( f33g ) %] \
2342
		<option value="g" selected="selected">g Gresk alfabet</option> \
2343
		[% ELSE %] \
2344
		<option value="g">g Gresk alfabet</option> \
2345
		[% END %] \
2346
	[% IF ( f33h ) %] \
2347
		<option value="h" selected="selected">h Hebraisk alfabet</option> \
2348
		[% ELSE %] \
2349
		<option value="h">h Hebraisk alfabet</option> \
2350
		[% END %] \
2351
	[% IF ( f33i ) %] \
2352
		<option value="i" selected="selected">i Thai</option> \
2353
		[% ELSE %] \
2354
		<option value="i">i Thai</option> \
2355
		[% END %] \
2356
	[% IF ( f33j ) %] \
2357
		<option value="j" selected="selected">j Devanagari</option> \
2358
		[% ELSE %] \
2359
		<option value="j">j Devanagari</option> \
2360
		[% END %] \
2361
	[% IF ( f33k ) %] \
2362
		<option value="k" selected="selected">k Koreansk alfabet</option> \
2363
		[% ELSE %] \
2364
		<option value="k">k Koreansk alfabet</option> \
2365
		[% END %] \
2366
	[% IF ( f33l ) %] \
2367
		<option value="l" selected="selected">l Tamil</option> \
2368
		[% ELSE %] \
2369
		<option value="l">l Tamil</option> \
2370
		[% END %] \
2371
	[% IF ( f33m ) %] \
2372
		<option value="m" selected="selected">m Gotisk skrift</option> \
2373
		[% ELSE %] \
2374
		<option value="m">m Gotisk skrift</option> \
2375
		[% END %] \
2376
	[% IF ( f33u ) %] \
2377
		<option value="u" selected="selected">u Ukjent eller uanvendelig</option> \
2378
		[% ELSE %] \
2379
		<option value="u">u Ukjent eller uanvendelig</option> \
2380
		[% END %] \
2381
	[% IF ( f33z ) %] \
2382
		<option value="z" selected="selected">z Andre alfabeter eller skriftsystemer</option> \
2383
		[% ELSE %] \
2384
		<option value="z">z Andre alfabeter eller skriftsystemer</option> \
2385
		[% END %] \
2386
</select> \
2387
		 </td></tr> \
2388
		 		 		 <tr> \
2389
		 <td>34 Udefinert</td> \
2390
		 <td> \
2391
		 <input type="hidden" name="f34" id="f34" value=" " /> \
2392
		 </td></tr> \
2393
		 </table>';
2394
    break;
2395
  case "fil":
2396
    divOutput.innerHTML='<table> \
2397
		 <tr> \
2398
		 <td>18-21 Udefinert</td> \
2399
		 <td> \
2400
		 <input type="hidden" name="f18" id="f18" value=" " /> \
2401
		 <input type="hidden" name="f19" id="f19" value=" " /> \
2402
		 <input type="hidden" name="f20" id="f20" value=" " /> \
2403
		 <input type="hidden" name="f21" id="f21" value=" " /> \
2404
		 </td></tr> \
2405
		 <tr> \
2406
		 <td>22 Målgruppe / Intellektuelt nivå</td> \
2407
		 <td> \
2408
        <select name="f22" id="f22"> \
2409
	[% IF ( f22 ) %] \
2410
		<option value=" " selected="selected">^ Ikke angitt</option> \
2411
		[% ELSE %] \
2412
		<option value=" ">^ Ikke angitt</option> \
2413
		[% END %] \
2414
	[% IF ( f221 ) %] \
2415
		<option value="1" selected="selected">1 Barn i alderen til og med 5 år</option> \
2416
		[% ELSE %] \
2417
		<option value="1">1 Barn i alderen til og med 5 år</option> \
2418
		[% END %] \
2419
	[% IF ( f22a ) %] \
2420
		<option value="a" selected="selected">a Voksne</option> \
2421
		[% ELSE %] \
2422
		<option value="a">a Voksne</option> \
2423
		[% END %] \
2424
	[% IF ( f22f ) %] \
2425
		<option value="f" selected="selected">f Spesialisert</option> \
2426
		[% ELSE %] \
2427
		<option value="f">f Spesialisert</option> \
2428
		[% END %] \
2429
	[% IF ( f22g ) %] \
2430
		<option value="g" selected="selected">g Generell</option> \
2431
		[% ELSE %] \
2432
		<option value="g">g Generell</option> \
2433
		[% END %] \
2434
	[% IF ( f22j ) %] \
2435
		<option value="j" selected="selected">j Barn og ungdom</option> \
2436
		[% ELSE %] \
2437
		<option value="j">j Barn og ungdom</option> \
2438
		[% END %] \
2439
	[% IF ( f22m ) %] \
2440
		<option value="m" selected="selected">m Elever på 1. til 3. klassetrinn</option> \
2441
		[% ELSE %] \
2442
		<option value="m">m Elever på 1. til 3. klassetrinn</option> \
2443
		[% END %] \
2444
	[% IF ( f22n ) %] \
2445
		<option value="n" selected="selected">n Elever på 4. og 5. klassetrinn</option> \
2446
		[% ELSE %] \
2447
		<option value="n">n Elever på 4. og 5. klassetrinn</option> \
2448
		[% END %] \
2449
	[% IF ( f22o ) %] \
2450
		<option value="o" selected="selected">o Elever på 6. og 7. klassetrinn</option> \
2451
		[% ELSE %] \
2452
		<option value="o">o Elever på 6. og 7. klassetrinn</option> \
2453
		[% END %] \
2454
	[% IF ( f22p ) %] \
2455
		<option value="p" selected="selected">p Elever på ungdomstrinnet</option> \
2456
		[% ELSE %] \
2457
		<option value="p">p Elever på ungdomstrinnet</option> \
2458
		[% END %] \
2459
	[% IF ( f22q ) %] \
2460
		<option value="q" selected="selected">q Lettlest</option> \
2461
		[% ELSE %] \
2462
		<option value="q">q Lettlest</option> \
2463
		[% END %] \
2464
	[% IF ( f22r ) %] \
2465
		<option value="r" selected="selected">r For psykisk utviklingshemmede</option> \
2466
		[% ELSE %] \
2467
		<option value="r">r For psykisk utviklingshemmede</option> \
2468
		[% END %] \
2469
	[% IF ( f22s ) %] \
2470
		<option value="s" selected="selected">s Storskrift</option> \
2471
		[% ELSE %] \
2472
		<option value="s">s Storskrift</option> \
2473
		[% END %] \
2474
	[% IF ( f22u ) %] \
2475
		<option value="u" selected="selected">u Ukjent</option> \
2476
		[% ELSE %] \
2477
		<option value="u">u Ukjent</option> \
2478
		[% END %] \
2479
</select> \
2480
		 </td></tr> \
2481
		 <tr> \
2482
		 <td>23-25 Udefinert</td> \
2483
		 <td> \
2484
		 <input type="hidden" name="f23" id="f23" value=" " /> \
2485
		 <input type="hidden" name="f24" id="f24" value=" " /> \
2486
		 <input type="hidden" name="f25" id="f25" value=" " /> \
2487
		 </td></tr> \
2488
		 <tr> \
2489
		 <td>26 Type data</td> \
2490
		 <td> \
2491
        <select name="f26" id="f26"> \
2492
	[% IF ( f26 ) %] \
2493
		<option value=" " selected="selected">^ Ikke angitt</option> \
2494
		[% ELSE %] \
2495
		<option value=" ">^ Ikke angitt</option> \
2496
		[% END %] \
2497
	[% IF ( f26a ) %] \
2498
		<option value="a" selected="selected">a Numeriske data</option> \
2499
		[% ELSE %] \
2500
		<option value="a">a Numeriske data</option> \
2501
		[% END %] \
2502
	[% IF ( f26b ) %] \
2503
		<option value="b" selected="selected">b Programvare</option> \
2504
		[% ELSE %] \
2505
		<option value="b">b Programvare</option> \
2506
		[% END %] \
2507
	[% IF ( f26c ) %] \
2508
		<option value="c" selected="selected">c Grafiske data</option> \
2509
		[% ELSE %] \
2510
		<option value="c">c Grafiske data</option> \
2511
		[% END %] \
2512
	[% IF ( f26d ) %] \
2513
		<option value="d" selected="selected">d Tekst</option> \
2514
		[% ELSE %] \
2515
		<option value="d">d Tekst</option> \
2516
		[% END %] \
2517
	[% IF ( f26e ) %] \
2518
		<option value="e" selected="selected">e Bibliografiske data</option> \
2519
		[% ELSE %] \
2520
		<option value="e">e Bibliografiske data</option> \
2521
		[% END %] \
2522
	[% IF ( f26f ) %] \
2523
		<option value="f" selected="selected">f Font</option> \
2524
		[% ELSE %] \
2525
		<option value="f">f Font</option> \
2526
		[% END %] \
2527
	[% IF ( f26g ) %] \
2528
		<option value="g" selected="selected">g Spill</option> \
2529
		[% ELSE %] \
2530
		<option value="g">g Spill</option> \
2531
		[% END %] \
2532
	[% IF ( f26h ) %] \
2533
		<option value="h" selected="selected">h Lyd</option> \
2534
		[% ELSE %] \
2535
		<option value="h">h Lyd</option> \
2536
		[% END %] \
2537
	[% IF ( f26i ) %] \
2538
		<option value="i" selected="selected">i Interaktivt multimedium</option> \
2539
		[% ELSE %] \
2540
		<option value="i">i Interaktivt multimedium</option> \
2541
		[% END %] \
2542
	[% IF ( f26j ) %] \
2543
		<option value="j" selected="selected">j Online tjeneste</option> \
2544
		[% ELSE %] \
2545
		<option value="j">j Online tjeneste</option> \
2546
		[% END %] \
2547
	[% IF ( f26m ) %] \
2548
		<option value="m" selected="selected">m En kombinasjon av to eller flere av de ovennevnte</option> \
2549
		[% ELSE %] \
2550
		<option value="m">m En kombinasjon av to eller flere av de ovennevnte</option> \
2551
		[% END %] \
2552
	[% IF ( f26u ) %] \
2553
		<option value="u" selected="selected">u Ukjent</option> \
2554
		[% ELSE %] \
2555
		<option value="u">u Ukjent</option> \
2556
		[% END %] \
2557
	[% IF ( f26z ) %] \
2558
		<option value="z" selected="selected">z Annen type data</option> \
2559
		[% ELSE %] \
2560
		<option value="z">z Annen type data</option> \
2561
		[% END %] \
2562
</select> \
2563
		 </td></tr> \
2564
		 		 <tr> \
2565
		 <td>27 Udefinert</td> \
2566
		 <td> \
2567
		 <input type="hidden" name="f27" id="f27" value=" " /> \
2568
		 </td></tr> \
2569
		 <tr> \
2570
		 <td>28 Offentlig publikasjon</td> \
2571
		 <td> \
2572
        <select name="f28" id="f28"> \
2573
	[% IF ( f28 ) %] \
2574
		<option value=" " selected="selected">^ Ikke angitt</option> \
2575
		[% ELSE %] \
2576
		<option value=" ">^ Ikke angitt</option> \
2577
		[% END %] \
2578
	[% IF ( f280 ) %] \
2579
		<option value="0" selected="selected">0 Ikke offentlig publikasjon</option> \
2580
		[% ELSE %] \
2581
		<option value="0">0 Ikke offentlig publikasjon</option> \
2582
		[% END %] \
2583
	[% IF ( f281 ) %] \
2584
		<option value="1" selected="selected">1 Offentlig publikasjon</option> \
2585
		[% ELSE %] \
2586
		<option value="1">1 Offentlig publikasjon</option> \
2587
		[% END %] \
2588
	[% IF ( f28b ) %] \
2589
		<option value="b" selected="selected">b Kommunal publikasjon</option> \
2590
		[% ELSE %] \
2591
		<option value="b">b Kommunal publikasjon</option> \
2592
		[% END %] \
2593
	[% IF ( f28c ) %] \
2594
		<option value="c" selected="selected">c Fylkeskommunal publikasjon</option> \
2595
		[% ELSE %] \
2596
		<option value="c">c Fylkeskommunal publikasjon</option> \
2597
		[% END %] \
2598
	[% IF ( f28d ) %] \
2599
		<option value="d" selected="selected">d Publikasjon fra regjeringer, departementer, direktorater, offentlige utvalg o.l.</option> \
2600
		[% ELSE %] \
2601
		<option value="d">d Publikasjon fra regjeringer, departementer, direktorater, offentlige utvalg o.l.</option> \
2602
		[% END %] \
2603
	[% IF ( f28e ) %] \
2604
		<option value="e" selected="selected">e Publikasjon fra andre statlige institusjoner, f.eks. Statens kartverk</option> \
2605
		[% ELSE %] \
2606
		<option value="e">e Publikasjon fra andre statlige institusjoner, f.eks. Statens kartverk</option> \
2607
		[% END %] \
2608
</select> \
2609
		 </td></tr> \
2610
		 		 		 <tr> \
2611
		 <td>29-34 Udefinert</td> \
2612
		 <td> \
2613
		 <input type="hidden" name="f29" id="f29" value=" " /> \
2614
 		 <input type="hidden" name="f30" id="f30" value=" " /> \
2615
		 <input type="hidden" name="f31" id="f31" value=" " /> \
2616
		 <input type="hidden" name="f32" id="f32" value=" " /> \
2617
		 <input type="hidden" name="f33" id="f33" value=" " /> \
2618
		 <input type="hidden" name="f34" id="f34" value=" " /> \
2619
		 </td></tr> \
2620
		</table>';
2621
		break;
2622
  case "mus":
2623
    divOutput.innerHTML='<table> \
2624
		 		 		 <tr> \
2625
		 <td>18-19 Udefinert</td> \
2626
		 <td> \
2627
		 <input type="hidden" name="f18" id="f18" value=" " /> \
2628
 		 <input type="hidden" name="f19" id="f19" value=" " /> \
2629
		 </td></tr> \
2630
		 <tr> \
2631
		 <td>20 Format</td> \
2632
		 <td> \
2633
        <select name="f20" id="f20"> \
2634
	[% IF ( f20 ) %] \
2635
		<option value=" " selected="selected">^ Ikke angitt</option> \
2636
		[% ELSE %] \
2637
		<option value=" ">^ Ikke angitt</option> \
2638
		[% END %] \
2639
	[% IF ( f20a ) %] \
2640
		<option value="a" selected="selected">a Partitur</option> \
2641
		[% ELSE %] \
2642
		<option value="a">a Partitur</option> \
2643
		[% END %] \
2644
	[% IF ( f20b ) %] \
2645
		<option value="b" selected="selected">b Studiepartitur</option> \
2646
		[% ELSE %] \
2647
		<option value="b">b Studiepartitur</option> \
2648
		[% END %] \
2649
	[% IF ( f20c ) %] \
2650
		<option value="c" selected="selected">c Klaverpartitur</option> \
2651
		[% ELSE %] \
2652
		<option value="c">c Klaverpartitur</option> \
2653
		[% END %] \
2654
	[% IF ( f20d ) %] \
2655
		<option value="d" selected="selected">d Korpartitur</option> \
2656
		[% ELSE %] \
2657
		<option value="d">d Korpartitur</option> \
2658
		[% END %] \
2659
	[% IF ( f20e ) %] \
2660
		<option value="e" selected="selected">e Particell eller direksjonsstemme for klaver/fiolin o.l.</option> \
2661
		[% ELSE %] \
2662
		<option value="e">e Particell eller direksjonsstemme for klaver/fiolin o.l.</option> \
2663
		[% END %] \
2664
	[% IF ( f20g ) %] \
2665
		<option value="g" selected="selected">g Enhetspartitur</option> \
2666
		[% ELSE %] \
2667
		<option value="g">g Enhetspartitur</option> \
2668
		[% END %] \
2669
	[% IF ( f20m ) %] \
2670
		<option value="m" selected="selected">m Forskjellige typer partitur</option> \
2671
		[% ELSE %] \
2672
		<option value="m">m Forskjellige typer partitur</option> \
2673
		[% END %] \
2674
	[% IF ( f20u ) %] \
2675
		<option value="u" selected="selected">u Ukjent</option> \
2676
		[% ELSE %] \
2677
		<option value="u">u Ukjent</option> \
2678
		[% END %] \
2679
	[% IF ( f20z ) %] \
2680
		<option value="z" selected="selected">z Annet enn partitur</option> \
2681
		[% ELSE %] \
2682
		<option value="z">z Annet enn partitur</option> \
2683
		[% END %] \
2684
</select> \
2685
		 </td></tr> \
2686
		 <tr> \
2687
		 <td>21 Udefinert</td> \
2688
		 <td> \
2689
		 <input type="hidden" name="f21" id="f21" value=" " /> \
2690
		 </td></tr> \
2691
		 <tr> \
2692
		 <td>22 Målgruppe / Intellektuelt nivå</td> \
2693
		 <td> \
2694
        <select name="f22" id="f22"> \
2695
	[% IF ( f22 ) %] \
2696
		<option value=" " selected="selected">^ Ikke angitt</option> \
2697
		[% ELSE %] \
2698
		<option value=" ">^ Ikke angitt</option> \
2699
		[% END %] \
2700
	[% IF ( f221 ) %] \
2701
		<option value="1" selected="selected">1 Barn i alderen til og med 5 år</option> \
2702
		[% ELSE %] \
2703
		<option value="1">1 Barn i alderen til og med 5 år</option> \
2704
		[% END %] \
2705
	[% IF ( f22a ) %] \
2706
		<option value="a" selected="selected">a Voksne</option> \
2707
		[% ELSE %] \
2708
		<option value="a">a Voksne</option> \
2709
		[% END %] \
2710
	[% IF ( f22f ) %] \
2711
		<option value="f" selected="selected">f Spesialisert</option> \
2712
		[% ELSE %] \
2713
		<option value="f">f Spesialisert</option> \
2714
		[% END %] \
2715
	[% IF ( f22g ) %] \
2716
		<option value="g" selected="selected">g Generell</option> \
2717
		[% ELSE %] \
2718
		<option value="g">g Generell</option> \
2719
		[% END %] \
2720
	[% IF ( f22j ) %] \
2721
		<option value="j" selected="selected">j Barn og ungdom</option> \
2722
		[% ELSE %] \
2723
		<option value="j">j Barn og ungdom</option> \
2724
		[% END %] \
2725
	[% IF ( f22m ) %] \
2726
		<option value="m" selected="selected">m Elever på 1. til 3. klassetrinn</option> \
2727
		[% ELSE %] \
2728
		<option value="m">m Elever på 1. til 3. klassetrinn</option> \
2729
		[% END %] \
2730
	[% IF ( f22n ) %] \
2731
		<option value="n" selected="selected">n Elever på 4. og 5. klassetrinn</option> \
2732
		[% ELSE %] \
2733
		<option value="n">n Elever på 4. og 5. klassetrinn</option> \
2734
		[% END %] \
2735
	[% IF ( f22o ) %] \
2736
		<option value="o" selected="selected">o Elever på 6. og 7. klassetrinn</option> \
2737
		[% ELSE %] \
2738
		<option value="o">o Elever på 6. og 7. klassetrinn</option> \
2739
		[% END %] \
2740
	[% IF ( f22p ) %] \
2741
		<option value="p" selected="selected">p Elever på ungdomstrinnet</option> \
2742
		[% ELSE %] \
2743
		<option value="p">p Elever på ungdomstrinnet</option> \
2744
		[% END %] \
2745
	[% IF ( f22q ) %] \
2746
		<option value="q" selected="selected">q Lettlest</option> \
2747
		[% ELSE %] \
2748
		<option value="q">q Lettlest</option> \
2749
		[% END %] \
2750
	[% IF ( f22r ) %] \
2751
		<option value="r" selected="selected">r For psykisk utviklingshemmede</option> \
2752
		[% ELSE %] \
2753
		<option value="r">r For psykisk utviklingshemmede</option> \
2754
		[% END %] \
2755
	[% IF ( f22s ) %] \
2756
		<option value="s" selected="selected">s Storskrift</option> \
2757
		[% ELSE %] \
2758
		<option value="s">s Storskrift</option> \
2759
		[% END %] \
2760
	[% IF ( f22u ) %] \
2761
		<option value="u" selected="selected">u Ukjent</option> \
2762
		[% ELSE %] \
2763
		<option value="u">u Ukjent</option> \
2764
		[% END %] \
2765
</select> \
2766
		 </td></tr> \
2767
		 <tr> \
2768
		 <td>23 Materialform</td> \
2769
		 <td> \
2770
        <select name="f23" id="f23"> \
2771
	[% IF ( f23 ) %] \
2772
		<option value=" " selected="selected">^ Ikke angitt</option> \
2773
		[% ELSE %] \
2774
		<option value=" ">^ Ikke angitt</option> \
2775
		[% END %] \
2776
	[% IF ( f23a ) %] \
2777
		<option value="a" selected="selected">a Mikrofilm</option> \
2778
		[% ELSE %] \
2779
		<option value="a">a Mikrofilm</option> \
2780
		[% END %] \
2781
	[% IF ( f23b ) %] \
2782
		<option value="b" selected="selected">b Mikrofilmkort</option> \
2783
		[% ELSE %] \
2784
		<option value="b">b Mikrofilmkort</option> \
2785
		[% END %] \
2786
	[% IF ( f23c ) %] \
2787
		<option value="c" selected="selected">c Mikro-opak</option> \
2788
		[% ELSE %] \
2789
		<option value="c">c Mikro-opak</option> \
2790
		[% END %] \
2791
	[% IF ( f23f ) %] \
2792
		<option value="f" selected="selected">f Braille</option> \
2793
		[% ELSE %] \
2794
		<option value="f">f Braille</option> \
2795
		[% END %] \
2796
	[% IF ( f23r ) %] \
2797
		<option value="r" selected="selected">r Ordinært trykk (øye-lesbar)</option> \
2798
		[% ELSE %] \
2799
		<option value="r">r Ordinært trykk (øye-lesbar)</option> \
2800
		[% END %] \
2801
</select> \
2802
		 </td></tr> \
2803
		 <tr> \
2804
		 <td>24 Ledsagende materiale</td> \
2805
		 <td> \
2806
        <select name="f24" id="f24"> \
2807
	[% IF ( f24 ) %] \
2808
		<option value=" " selected="selected">^ Ikke angitt</option> \
2809
		[% ELSE %] \
2810
		<option value=" ">^ Ikke angitt</option> \
2811
		[% END %] \
2812
	[% IF ( f24a ) %] \
2813
		<option value="a" selected="selected">a Diskografi</option> \
2814
		[% ELSE %] \
2815
		<option value="a">a Diskografi</option> \
2816
		[% END %] \
2817
	[% IF ( f24b ) %] \
2818
		<option value="b" selected="selected">b Bibliografi</option> \
2819
		[% ELSE %] \
2820
		<option value="b">b Bibliografi</option> \
2821
		[% END %] \
2822
	[% IF ( f24c ) %] \
2823
		<option value="c" selected="selected">c Verkfortegnelse</option> \
2824
		[% ELSE %] \
2825
		<option value="c">c Verkfortegnelse</option> \
2826
		[% END %] \
2827
	[% IF ( f24d ) %] \
2828
		<option value="d" selected="selected">d Libretto eller tekst</option> \
2829
		[% ELSE %] \
2830
		<option value="d">d Libretto eller tekst</option> \
2831
		[% END %] \
2832
	[% IF ( f24e ) %] \
2833
		<option value="e" selected="selected">e Biografi over komponist eller forfatter</option> \
2834
		[% ELSE %] \
2835
		<option value="e">e Biografi over komponist eller forfatter</option> \
2836
		[% END %] \
2837
	[% IF ( f24f ) %] \
2838
		<option value="f" selected="selected">f Biografi over utøver eller bakgrunnsmateriale om gruppen</option> \
2839
		[% ELSE %] \
2840
		<option value="f">f Biografi over utøver eller bakgrunnsmateriale om gruppen</option> \
2841
		[% END %] \
2842
	[% IF ( f24g ) %] \
2843
		<option value="g" selected="selected">g Tekniske og/eller historiske opplysninger om instrumentene</option> \
2844
		[% ELSE %] \
2845
		<option value="g">g Tekniske og/eller historiske opplysninger om instrumentene</option> \
2846
		[% END %] \
2847
	[% IF ( f24h ) %] \
2848
		<option value="h" selected="selected">h Tekniske opplysninger om fremførelsen</option> \
2849
		[% ELSE %] \
2850
		<option value="h">h Tekniske opplysninger om fremførelsen</option> \
2851
		[% END %] \
2852
	[% IF ( f24i ) %] \
2853
		<option value="i" selected="selected">i Historiske opplysninger</option> \
2854
		[% ELSE %] \
2855
		<option value="i">i Historiske opplysninger</option> \
2856
		[% END %] \
2857
	[% IF ( f24k ) %] \
2858
		<option value="k" selected="selected">k Etnologiske opplysninger</option> \
2859
		[% ELSE %] \
2860
		<option value="k">k Etnologiske opplysninger</option> \
2861
		[% END %] \
2862
	[% IF ( f24n ) %] \
2863
		<option value="n" selected="selected">n Intet ledsagende materiale</option> \
2864
		[% ELSE %] \
2865
		<option value="n">n Intet ledsagende materiale</option> \
2866
		[% END %] \
2867
	[% IF ( f24r ) %] \
2868
		<option value="r" selected="selected">r Instruksjonsmateriale</option> \
2869
		[% ELSE %] \
2870
		<option value="r">r Instruksjonsmateriale</option> \
2871
		[% END %] \
2872
	[% IF ( f24s ) %] \
2873
		<option value="s" selected="selected">s Noter eller partitur i et annet format enn hoveddokumentet</option> \
2874
		[% ELSE %] \
2875
		<option value="s">s Noter eller partitur i et annet format enn hoveddokumentet</option> \
2876
		[% END %] \
2877
	[% IF ( f24z ) %] \
2878
		<option value="z" selected="selected">z Annet ledsagende materiale</option> \
2879
		[% ELSE %] \
2880
		<option value="z">z Annet ledsagende materiale</option> \
2881
		[% END %] \
2882
</select> \
2883
		 </td></tr> \
2884
		 <tr> \
2885
		 <td>25 Ledsagende materiale</td> \
2886
		 <td> \
2887
        <select name="f25" id="f25"> \
2888
	[% IF ( f25 ) %] \
2889
		<option value=" " selected="selected">^ Ikke angitt</option> \
2890
		[% ELSE %] \
2891
		<option value=" ">^ Ikke angitt</option> \
2892
		[% END %] \
2893
	[% IF ( f25a ) %] \
2894
		<option value="a" selected="selected">a Diskografi</option> \
2895
		[% ELSE %] \
2896
		<option value="a">a Diskografi</option> \
2897
		[% END %] \
2898
	[% IF ( f25b ) %] \
2899
		<option value="b" selected="selected">b Bibliografi</option> \
2900
		[% ELSE %] \
2901
		<option value="b">b Bibliografi</option> \
2902
		[% END %] \
2903
	[% IF ( f25c ) %] \
2904
		<option value="c" selected="selected">c Verkfortegnelse</option> \
2905
		[% ELSE %] \
2906
		<option value="c">c Verkfortegnelse</option> \
2907
		[% END %] \
2908
	[% IF ( f25d ) %] \
2909
		<option value="d" selected="selected">d Libretto eller tekst</option> \
2910
		[% ELSE %] \
2911
		<option value="d">d Libretto eller tekst</option> \
2912
		[% END %] \
2913
	[% IF ( f25e ) %] \
2914
		<option value="e" selected="selected">e Biografi over komponist eller forfatter</option> \
2915
		[% ELSE %] \
2916
		<option value="e">e Biografi over komponist eller forfatter</option> \
2917
		[% END %] \
2918
	[% IF ( f25f ) %] \
2919
		<option value="f" selected="selected">f Biografi over utøver eller bakgrunnsmateriale om gruppen</option> \
2920
		[% ELSE %] \
2921
		<option value="f">f Biografi over utøver eller bakgrunnsmateriale om gruppen</option> \
2922
		[% END %] \
2923
	[% IF ( f25g ) %] \
2924
		<option value="g" selected="selected">g Tekniske og/eller historiske opplysninger om instrumentene</option> \
2925
		[% ELSE %] \
2926
		<option value="g">g Tekniske og/eller historiske opplysninger om instrumentene</option> \
2927
		[% END %] \
2928
	[% IF ( f25h ) %] \
2929
		<option value="h" selected="selected">h Tekniske opplysninger om fremførelsen</option> \
2930
		[% ELSE %] \
2931
		<option value="h">h Tekniske opplysninger om fremførelsen</option> \
2932
		[% END %] \
2933
	[% IF ( f25i ) %] \
2934
		<option value="i" selected="selected">i Historiske opplysninger</option> \
2935
		[% ELSE %] \
2936
		<option value="i">i Historiske opplysninger</option> \
2937
		[% END %] \
2938
	[% IF ( f25k ) %] \
2939
		<option value="k" selected="selected">k Etnologiske opplysninger</option> \
2940
		[% ELSE %] \
2941
		<option value="k">k Etnologiske opplysninger</option> \
2942
		[% END %] \
2943
	[% IF ( f25n ) %] \
2944
		<option value="n" selected="selected">n Intet ledsagende materiale</option> \
2945
		[% ELSE %] \
2946
		<option value="n">n Intet ledsagende materiale</option> \
2947
		[% END %] \
2948
	[% IF ( f25r ) %] \
2949
		<option value="r" selected="selected">r Instruksjonsmateriale</option> \
2950
		[% ELSE %] \
2951
		<option value="r">r Instruksjonsmateriale</option> \
2952
		[% END %] \
2953
	[% IF ( f25s ) %] \
2954
		<option value="s" selected="selected">s Noter eller partitur i et annet format enn hoveddokumentet</option> \
2955
		[% ELSE %] \
2956
		<option value="s">s Noter eller partitur i et annet format enn hoveddokumentet</option> \
2957
		[% END %] \
2958
	[% IF ( f25z ) %] \
2959
		<option value="z" selected="selected">z Annet ledsagende materiale</option> \
2960
		[% ELSE %] \
2961
		<option value="z">z Annet ledsagende materiale</option> \
2962
		[% END %] \
2963
</select> \
2964
		 </td></tr> \
2965
		 <tr> \
2966
		 <td>26 Ledsagende materiale</td> \
2967
		 <td> \
2968
        <select name="f26" id="f26"> \
2969
	[% IF ( f26 ) %] \
2970
		<option value=" " selected="selected">^ Ikke angitt</option> \
2971
		[% ELSE %] \
2972
		<option value=" ">^ Ikke angitt</option> \
2973
		[% END %] \
2974
	[% IF ( f26a ) %] \
2975
		<option value="a" selected="selected">a Diskografi</option> \
2976
		[% ELSE %] \
2977
		<option value="a">a Diskografi</option> \
2978
		[% END %] \
2979
	[% IF ( f26b ) %] \
2980
		<option value="b" selected="selected">b Bibliografi</option> \
2981
		[% ELSE %] \
2982
		<option value="b">b Bibliografi</option> \
2983
		[% END %] \
2984
	[% IF ( f26c ) %] \
2985
		<option value="c" selected="selected">c Verkfortegnelse</option> \
2986
		[% ELSE %] \
2987
		<option value="c">c Verkfortegnelse</option> \
2988
		[% END %] \
2989
	[% IF ( f26d ) %] \
2990
		<option value="d" selected="selected">d Libretto eller tekst</option> \
2991
		[% ELSE %] \
2992
		<option value="d">d Libretto eller tekst</option> \
2993
		[% END %] \
2994
	[% IF ( f26e ) %] \
2995
		<option value="e" selected="selected">e Biografi over komponist eller forfatter</option> \
2996
		[% ELSE %] \
2997
		<option value="e">e Biografi over komponist eller forfatter</option> \
2998
		[% END %] \
2999
	[% IF ( f26f ) %] \
3000
		<option value="f" selected="selected">f Biografi over utøver eller bakgrunnsmateriale om gruppen</option> \
3001
		[% ELSE %] \
3002
		<option value="f">f Biografi over utøver eller bakgrunnsmateriale om gruppen</option> \
3003
		[% END %] \
3004
	[% IF ( f26g ) %] \
3005
		<option value="g" selected="selected">g Tekniske og/eller historiske opplysninger om instrumentene</option> \
3006
		[% ELSE %] \
3007
		<option value="g">g Tekniske og/eller historiske opplysninger om instrumentene</option> \
3008
		[% END %] \
3009
	[% IF ( f26h ) %] \
3010
		<option value="h" selected="selected">h Tekniske opplysninger om fremførelsen</option> \
3011
		[% ELSE %] \
3012
		<option value="h">h Tekniske opplysninger om fremførelsen</option> \
3013
		[% END %] \
3014
	[% IF ( f26i ) %] \
3015
		<option value="i" selected="selected">i Historiske opplysninger</option> \
3016
		[% ELSE %] \
3017
		<option value="i">i Historiske opplysninger</option> \
3018
		[% END %] \
3019
	[% IF ( f26k ) %] \
3020
		<option value="k" selected="selected">k Etnologiske opplysninger</option> \
3021
		[% ELSE %] \
3022
		<option value="k">k Etnologiske opplysninger</option> \
3023
		[% END %] \
3024
	[% IF ( f26n ) %] \
3025
		<option value="n" selected="selected">n Intet ledsagende materiale</option> \
3026
		[% ELSE %] \
3027
		<option value="n">n Intet ledsagende materiale</option> \
3028
		[% END %] \
3029
	[% IF ( f26r ) %] \
3030
		<option value="r" selected="selected">r Instruksjonsmateriale</option> \
3031
		[% ELSE %] \
3032
		<option value="r">r Instruksjonsmateriale</option> \
3033
		[% END %] \
3034
	[% IF ( f26s ) %] \
3035
		<option value="s" selected="selected">s Noter eller partitur i et annet format enn hoveddokumentet</option> \
3036
		[% ELSE %] \
3037
		<option value="s">s Noter eller partitur i et annet format enn hoveddokumentet</option> \
3038
		[% END %] \
3039
	[% IF ( f26z ) %] \
3040
		<option value="z" selected="selected">z Annet ledsagende materiale</option> \
3041
		[% ELSE %] \
3042
		<option value="z">z Annet ledsagende materiale</option> \
3043
		[% END %] \
3044
</select> \
3045
		 </td></tr> \
3046
		 <tr> \
3047
		 <td>27 Ledsagende materiale</td> \
3048
		 <td> \
3049
        <select name="f27" id="f27"> \
3050
	[% IF ( f27 ) %] \
3051
		<option value=" " selected="selected">^ Ikke angitt</option> \
3052
		[% ELSE %] \
3053
		<option value=" ">^ Ikke angitt</option> \
3054
		[% END %] \
3055
	[% IF ( f27a ) %] \
3056
		<option value="a" selected="selected">a Diskografi</option> \
3057
		[% ELSE %] \
3058
		<option value="a">a Diskografi</option> \
3059
		[% END %] \
3060
	[% IF ( f27b ) %] \
3061
		<option value="b" selected="selected">b Bibliografi</option> \
3062
		[% ELSE %] \
3063
		<option value="b">b Bibliografi</option> \
3064
		[% END %] \
3065
	[% IF ( f27c ) %] \
3066
		<option value="c" selected="selected">c Verkfortegnelse</option> \
3067
		[% ELSE %] \
3068
		<option value="c">c Verkfortegnelse</option> \
3069
		[% END %] \
3070
	[% IF ( f27d ) %] \
3071
		<option value="d" selected="selected">d Libretto eller tekst</option> \
3072
		[% ELSE %] \
3073
		<option value="d">d Libretto eller tekst</option> \
3074
		[% END %] \
3075
	[% IF ( f27e ) %] \
3076
		<option value="e" selected="selected">e Biografi over komponist eller forfatter</option> \
3077
		[% ELSE %] \
3078
		<option value="e">e Biografi over komponist eller forfatter</option> \
3079
		[% END %] \
3080
	[% IF ( f27f ) %] \
3081
		<option value="f" selected="selected">f Biografi over utøver eller bakgrunnsmateriale om gruppen</option> \
3082
		[% ELSE %] \
3083
		<option value="f">f Biografi over utøver eller bakgrunnsmateriale om gruppen</option> \
3084
		[% END %] \
3085
	[% IF ( f27g ) %] \
3086
		<option value="g" selected="selected">g Tekniske og/eller historiske opplysninger om instrumentene</option> \
3087
		[% ELSE %] \
3088
		<option value="g">g Tekniske og/eller historiske opplysninger om instrumentene</option> \
3089
		[% END %] \
3090
	[% IF ( f27h ) %] \
3091
		<option value="h" selected="selected">h Tekniske opplysninger om fremførelsen</option> \
3092
		[% ELSE %] \
3093
		<option value="h">h Tekniske opplysninger om fremførelsen</option> \
3094
		[% END %] \
3095
	[% IF ( f27i ) %] \
3096
		<option value="i" selected="selected">i Historiske opplysninger</option> \
3097
		[% ELSE %] \
3098
		<option value="i">i Historiske opplysninger</option> \
3099
		[% END %] \
3100
	[% IF ( f27k ) %] \
3101
		<option value="k" selected="selected">k Etnologiske opplysninger</option> \
3102
		[% ELSE %] \
3103
		<option value="k">k Etnologiske opplysninger</option> \
3104
		[% END %] \
3105
	[% IF ( f27n ) %] \
3106
		<option value="n" selected="selected">n Intet ledsagende materiale</option> \
3107
		[% ELSE %] \
3108
		<option value="n">n Intet ledsagende materiale</option> \
3109
		[% END %] \
3110
	[% IF ( f27r ) %] \
3111
		<option value="r" selected="selected">r Instruksjonsmateriale</option> \
3112
		[% ELSE %] \
3113
		<option value="r">r Instruksjonsmateriale</option> \
3114
		[% END %] \
3115
	[% IF ( f27s ) %] \
3116
		<option value="s" selected="selected">s Noter eller partitur i et annet format enn hoveddokumentet</option> \
3117
		[% ELSE %] \
3118
		<option value="s">s Noter eller partitur i et annet format enn hoveddokumentet</option> \
3119
		[% END %] \
3120
	[% IF ( f27z ) %] \
3121
		<option value="z" selected="selected">z Annet ledsagende materiale</option> \
3122
		[% ELSE %] \
3123
		<option value="z">z Annet ledsagende materiale</option> \
3124
		[% END %] \
3125
</select> \
3126
		 </td></tr> \
3127
		 <tr> \
3128
		 <td>28 Ledsagende materiale</td> \
3129
		 <td> \
3130
        <select name="f28" id="f28"> \
3131
	[% IF ( f28 ) %] \
3132
		<option value=" " selected="selected">^ Ikke angitt</option> \
3133
		[% ELSE %] \
3134
		<option value=" ">^ Ikke angitt</option> \
3135
		[% END %] \
3136
	[% IF ( f28a ) %] \
3137
		<option value="a" selected="selected">a Diskografi</option> \
3138
		[% ELSE %] \
3139
		<option value="a">a Diskografi</option> \
3140
		[% END %] \
3141
	[% IF ( f28b ) %] \
3142
		<option value="b" selected="selected">b Bibliografi</option> \
3143
		[% ELSE %] \
3144
		<option value="b">b Bibliografi</option> \
3145
		[% END %] \
3146
	[% IF ( f28c ) %] \
3147
		<option value="c" selected="selected">c Verkfortegnelse</option> \
3148
		[% ELSE %] \
3149
		<option value="c">c Verkfortegnelse</option> \
3150
		[% END %] \
3151
	[% IF ( f28d ) %] \
3152
		<option value="d" selected="selected">d Libretto eller tekst</option> \
3153
		[% ELSE %] \
3154
		<option value="d">d Libretto eller tekst</option> \
3155
		[% END %] \
3156
	[% IF ( f28e ) %] \
3157
		<option value="e" selected="selected">e Biografi over komponist eller forfatter</option> \
3158
		[% ELSE %] \
3159
		<option value="e">e Biografi over komponist eller forfatter</option> \
3160
		[% END %] \
3161
	[% IF ( f28f ) %] \
3162
		<option value="f" selected="selected">f Biografi over utøver eller bakgrunnsmateriale om gruppen</option> \
3163
		[% ELSE %] \
3164
		<option value="f">f Biografi over utøver eller bakgrunnsmateriale om gruppen</option> \
3165
		[% END %] \
3166
	[% IF ( f28g ) %] \
3167
		<option value="g" selected="selected">g Tekniske og/eller historiske opplysninger om instrumentene</option> \
3168
		[% ELSE %] \
3169
		<option value="g">g Tekniske og/eller historiske opplysninger om instrumentene</option> \
3170
		[% END %] \
3171
	[% IF ( f28h ) %] \
3172
		<option value="h" selected="selected">h Tekniske opplysninger om fremførelsen</option> \
3173
		[% ELSE %] \
3174
		<option value="h">h Tekniske opplysninger om fremførelsen</option> \
3175
		[% END %] \
3176
	[% IF ( f28i ) %] \
3177
		<option value="i" selected="selected">i Historiske opplysninger</option> \
3178
		[% ELSE %] \
3179
		<option value="i">i Historiske opplysninger</option> \
3180
		[% END %] \
3181
	[% IF ( f28k ) %] \
3182
		<option value="k" selected="selected">k Etnologiske opplysninger</option> \
3183
		[% ELSE %] \
3184
		<option value="k">k Etnologiske opplysninger</option> \
3185
		[% END %] \
3186
	[% IF ( f28n ) %] \
3187
		<option value="n" selected="selected">n Intet ledsagende materiale</option> \
3188
		[% ELSE %] \
3189
		<option value="n">n Intet ledsagende materiale</option> \
3190
		[% END %] \
3191
	[% IF ( f28r ) %] \
3192
		<option value="r" selected="selected">r Instruksjonsmateriale</option> \
3193
		[% ELSE %] \
3194
		<option value="r">r Instruksjonsmateriale</option> \
3195
		[% END %] \
3196
	[% IF ( f28s ) %] \
3197
		<option value="s" selected="selected">s Noter eller partitur i et annet format enn hoveddokumentet</option> \
3198
		[% ELSE %] \
3199
		<option value="s">s Noter eller partitur i et annet format enn hoveddokumentet</option> \
3200
		[% END %] \
3201
	[% IF ( f28z ) %] \
3202
		<option value="z" selected="selected">z Annet ledsagende materiale</option> \
3203
		[% ELSE %] \
3204
		<option value="z">z Annet ledsagende materiale</option> \
3205
		[% END %] \
3206
</select> \
3207
		 </td></tr> \
3208
		 <tr> \
3209
		 <td>29 Ledsagende materiale</td> \
3210
		 <td> \
3211
        <select name="f29" id="f29"> \
3212
	[% IF ( f29 ) %] \
3213
		<option value=" " selected="selected">^ Ikke angitt</option> \
3214
		[% ELSE %] \
3215
		<option value=" ">^ Ikke angitt</option> \
3216
		[% END %] \
3217
	[% IF ( f29a ) %] \
3218
		<option value="a" selected="selected">a Diskografi</option> \
3219
		[% ELSE %] \
3220
		<option value="a">a Diskografi</option> \
3221
		[% END %] \
3222
	[% IF ( f29b ) %] \
3223
		<option value="b" selected="selected">b Bibliografi</option> \
3224
		[% ELSE %] \
3225
		<option value="b">b Bibliografi</option> \
3226
		[% END %] \
3227
	[% IF ( f29c ) %] \
3228
		<option value="c" selected="selected">c Verkfortegnelse</option> \
3229
		[% ELSE %] \
3230
		<option value="c">c Verkfortegnelse</option> \
3231
		[% END %] \
3232
	[% IF ( f29d ) %] \
3233
		<option value="d" selected="selected">d Libretto eller tekst</option> \
3234
		[% ELSE %] \
3235
		<option value="d">d Libretto eller tekst</option> \
3236
		[% END %] \
3237
	[% IF ( f29e ) %] \
3238
		<option value="e" selected="selected">e Biografi over komponist eller forfatter</option> \
3239
		[% ELSE %] \
3240
		<option value="e">e Biografi over komponist eller forfatter</option> \
3241
		[% END %] \
3242
	[% IF ( f29f ) %] \
3243
		<option value="f" selected="selected">f Biografi over utøver eller bakgrunnsmateriale om gruppen</option> \
3244
		[% ELSE %] \
3245
		<option value="f">f Biografi over utøver eller bakgrunnsmateriale om gruppen</option> \
3246
		[% END %] \
3247
	[% IF ( f29g ) %] \
3248
		<option value="g" selected="selected">g Tekniske og/eller historiske opplysninger om instrumentene</option> \
3249
		[% ELSE %] \
3250
		<option value="g">g Tekniske og/eller historiske opplysninger om instrumentene</option> \
3251
		[% END %] \
3252
	[% IF ( f29h ) %] \
3253
		<option value="h" selected="selected">h Tekniske opplysninger om fremførelsen</option> \
3254
		[% ELSE %] \
3255
		<option value="h">h Tekniske opplysninger om fremførelsen</option> \
3256
		[% END %] \
3257
	[% IF ( f29i ) %] \
3258
		<option value="i" selected="selected">i Historiske opplysninger</option> \
3259
		[% ELSE %] \
3260
		<option value="i">i Historiske opplysninger</option> \
3261
		[% END %] \
3262
	[% IF ( f29k ) %] \
3263
		<option value="k" selected="selected">k Etnologiske opplysninger</option> \
3264
		[% ELSE %] \
3265
		<option value="k">k Etnologiske opplysninger</option> \
3266
		[% END %] \
3267
	[% IF ( f29n ) %] \
3268
		<option value="n" selected="selected">n Intet ledsagende materiale</option> \
3269
		[% ELSE %] \
3270
		<option value="n">n Intet ledsagende materiale</option> \
3271
		[% END %] \
3272
	[% IF ( f29r ) %] \
3273
		<option value="r" selected="selected">r Instruksjonsmateriale</option> \
3274
		[% ELSE %] \
3275
		<option value="r">r Instruksjonsmateriale</option> \
3276
		[% END %] \
3277
	[% IF ( f29s ) %] \
3278
		<option value="s" selected="selected">s Noter eller partitur i et annet format enn hoveddokumentet</option> \
3279
		[% ELSE %] \
3280
		<option value="s">s Noter eller partitur i et annet format enn hoveddokumentet</option> \
3281
		[% END %] \
3282
	[% IF ( f29z ) %] \
3283
		<option value="z" selected="selected">z Annet ledsagende materiale</option> \
3284
		[% ELSE %] \
3285
		<option value="z">z Annet ledsagende materiale</option> \
3286
		[% END %] \
3287
</select> \
3288
		 </td></tr> \
3289
		 <tr> \
3290
		 <td>30 Innhold på lydopptak</td> \
3291
		 <td> \
3292
        <select name="f30" id="f30"> \
3293
	[% IF ( f30 ) %] \
3294
		<option value=" " selected="selected">^ Ikke angitt</option> \
3295
		[% ELSE %] \
3296
		<option value=" ">^ Ikke angitt</option> \
3297
		[% END %] \
3298
	[% IF ( f30a ) %] \
3299
		<option value="a" selected="selected">a Selvbiografier</option> \
3300
		[% ELSE %] \
3301
		<option value="a">a Selvbiografier</option> \
3302
		[% END %] \
3303
	[% IF ( f30b ) %] \
3304
		<option value="b" selected="selected">b Biografier</option> \
3305
		[% ELSE %] \
3306
		<option value="b">b Biografier</option> \
3307
		[% END %] \
3308
	[% IF ( f30c ) %] \
3309
		<option value="c" selected="selected">c Samtaler og diskusjoner</option> \
3310
		[% ELSE %] \
3311
		<option value="c">c Samtaler og diskusjoner</option> \
3312
		[% END %] \
3313
	[% IF ( f30d ) %] \
3314
		<option value="d" selected="selected">d Drama</option> \
3315
		[% ELSE %] \
3316
		<option value="d">d Drama</option> \
3317
		[% END %] \
3318
	[% IF ( f30e ) %] \
3319
		<option value="e" selected="selected">e Essays</option> \
3320
		[% ELSE %] \
3321
		<option value="e">e Essays</option> \
3322
		[% END %] \
3323
	[% IF ( f30f ) %] \
3324
		<option value="f" selected="selected">f Romaner</option> \
3325
		[% ELSE %] \
3326
		<option value="f">f Romaner</option> \
3327
		[% END %] \
3328
	[% IF ( f30g ) %] \
3329
		<option value="g" selected="selected">g Rapporter, referater</option> \
3330
		[% ELSE %] \
3331
		<option value="g">g Rapporter, referater</option> \
3332
		[% END %] \
3333
	[% IF ( f30h ) %] \
3334
		<option value="h" selected="selected">h Fortellinger, noveller</option> \
3335
		[% ELSE %] \
3336
		<option value="h">h Fortellinger, noveller</option> \
3337
		[% END %] \
3338
	[% IF ( f30i ) %] \
3339
		<option value="i" selected="selected">i Undervisning</option> \
3340
		[% ELSE %] \
3341
		<option value="i">i Undervisning</option> \
3342
		[% END %] \
3343
	[% IF ( f30j ) %] \
3344
		<option value="j" selected="selected">j Språkundervisning</option> \
3345
		[% ELSE %] \
3346
		<option value="j">j Språkundervisning</option> \
3347
		[% END %] \
3348
	[% IF ( f30k ) %] \
3349
		<option value="k" selected="selected">k Komedier</option> \
3350
		[% ELSE %] \
3351
		<option value="k">k Komedier</option> \
3352
		[% END %] \
3353
	[% IF ( f30l ) %] \
3354
		<option value="l" selected="selected">l Foredrag, taler</option> \
3355
		[% ELSE %] \
3356
		<option value="l">l Foredrag, taler</option> \
3357
		[% END %] \
3358
	[% IF ( f30m ) %] \
3359
		<option value="m" selected="selected">m Memoarer</option> \
3360
		[% ELSE %] \
3361
		<option value="m">m Memoarer</option> \
3362
		[% END %] \
3363
	[% IF ( f30o ) %] \
3364
		<option value="o" selected="selected">o Eventyr</option> \
3365
		[% ELSE %] \
3366
		<option value="o">o Eventyr</option> \
3367
		[% END %] \
3368
	[% IF ( f30p ) %] \
3369
		<option value="p" selected="selected">p Dikt</option> \
3370
		[% ELSE %] \
3371
		<option value="p">p Dikt</option> \
3372
		[% END %] \
3373
	[% IF ( f30r ) %] \
3374
		<option value="r" selected="selected">r Fremføring av alle typer ikke-musikalske produksjoner</option> \
3375
		[% ELSE %] \
3376
		<option value="r">r Fremføring av alle typer ikke-musikalske produksjoner</option> \
3377
		[% END %] \
3378
	[% IF ( f30s ) %] \
3379
		<option value="s" selected="selected">s Lyder (f.eks. fuglelyder)</option> \
3380
		[% ELSE %] \
3381
		<option value="s">s Lyder (f.eks. fuglelyder)</option> \
3382
		[% END %] \
3383
	[% IF ( f30t ) %] \
3384
		<option value="t" selected="selected">t Intervjuer</option> \
3385
		[% ELSE %] \
3386
		<option value="t">t Intervjuer</option> \
3387
		[% END %] \
3388
	[% IF ( f30z ) %] \
3389
		<option value="z" selected="selected">z Andre typer innhold</option> \
3390
		[% ELSE %] \
3391
		<option value="z">z Andre typer innhold</option> \
3392
		[% END %] \
3393
</select> \
3394
		 </td></tr> \
3395
		 <tr> \
3396
		 <td>31 Innhold på lydopptak</td> \
3397
		 <td> \
3398
        <select name="f31" id="f31"> \
3399
	[% IF ( f31 ) %] \
3400
		<option value=" " selected="selected">^ Ikke angitt</option> \
3401
		[% ELSE %] \
3402
		<option value=" ">^ Ikke angitt</option> \
3403
		[% END %] \
3404
	[% IF ( f31a ) %] \
3405
		<option value="a" selected="selected">a Selvbiografier</option> \
3406
		[% ELSE %] \
3407
		<option value="a">a Selvbiografier</option> \
3408
		[% END %] \
3409
	[% IF ( f31b ) %] \
3410
		<option value="b" selected="selected">b Biografier</option> \
3411
		[% ELSE %] \
3412
		<option value="b">b Biografier</option> \
3413
		[% END %] \
3414
	[% IF ( f31c ) %] \
3415
		<option value="c" selected="selected">c Samtaler og diskusjoner</option> \
3416
		[% ELSE %] \
3417
		<option value="c">c Samtaler og diskusjoner</option> \
3418
		[% END %] \
3419
	[% IF ( f31d ) %] \
3420
		<option value="d" selected="selected">d Drama</option> \
3421
		[% ELSE %] \
3422
		<option value="d">d Drama</option> \
3423
		[% END %] \
3424
	[% IF ( f31e ) %] \
3425
		<option value="e" selected="selected">e Essays</option> \
3426
		[% ELSE %] \
3427
		<option value="e">e Essays</option> \
3428
		[% END %] \
3429
	[% IF ( f31f ) %] \
3430
		<option value="f" selected="selected">f Romaner</option> \
3431
		[% ELSE %] \
3432
		<option value="f">f Romaner</option> \
3433
		[% END %] \
3434
	[% IF ( f31g ) %] \
3435
		<option value="g" selected="selected">g Rapporter, referater</option> \
3436
		[% ELSE %] \
3437
		<option value="g">g Rapporter, referater</option> \
3438
		[% END %] \
3439
	[% IF ( f31h ) %] \
3440
		<option value="h" selected="selected">h Fortellinger, noveller</option> \
3441
		[% ELSE %] \
3442
		<option value="h">h Fortellinger, noveller</option> \
3443
		[% END %] \
3444
	[% IF ( f31i ) %] \
3445
		<option value="i" selected="selected">i Undervisning</option> \
3446
		[% ELSE %] \
3447
		<option value="i">i Undervisning</option> \
3448
		[% END %] \
3449
	[% IF ( f31j ) %] \
3450
		<option value="j" selected="selected">j Språkundervisning</option> \
3451
		[% ELSE %] \
3452
		<option value="j">j Språkundervisning</option> \
3453
		[% END %] \
3454
	[% IF ( f31k ) %] \
3455
		<option value="k" selected="selected">k Komedier</option> \
3456
		[% ELSE %] \
3457
		<option value="k">k Komedier</option> \
3458
		[% END %] \
3459
	[% IF ( f31l ) %] \
3460
		<option value="l" selected="selected">l Foredrag, taler</option> \
3461
		[% ELSE %] \
3462
		<option value="l">l Foredrag, taler</option> \
3463
		[% END %] \
3464
	[% IF ( f31m ) %] \
3465
		<option value="m" selected="selected">m Memoarer</option> \
3466
		[% ELSE %] \
3467
		<option value="m">m Memoarer</option> \
3468
		[% END %] \
3469
	[% IF ( f31o ) %] \
3470
		<option value="o" selected="selected">o Eventyr</option> \
3471
		[% ELSE %] \
3472
		<option value="o">o Eventyr</option> \
3473
		[% END %] \
3474
	[% IF ( f31p ) %] \
3475
		<option value="p" selected="selected">p Dikt</option> \
3476
		[% ELSE %] \
3477
		<option value="p">p Dikt</option> \
3478
		[% END %] \
3479
	[% IF ( f31r ) %] \
3480
		<option value="r" selected="selected">r Fremføring av alle typer ikke-musikalske produksjoner</option> \
3481
		[% ELSE %] \
3482
		<option value="r">r Fremføring av alle typer ikke-musikalske produksjoner</option> \
3483
		[% END %] \
3484
	[% IF ( f31s ) %] \
3485
		<option value="s" selected="selected">s Lyder (f.eks. fuglelyder)</option> \
3486
		[% ELSE %] \
3487
		<option value="s">s Lyder (f.eks. fuglelyder)</option> \
3488
		[% END %] \
3489
	[% IF ( f31t ) %] \
3490
		<option value="t" selected="selected">t Intervjuer</option> \
3491
		[% ELSE %] \
3492
		<option value="t">t Intervjuer</option> \
3493
		[% END %] \
3494
	[% IF ( f31z ) %] \
3495
		<option value="z" selected="selected">z Andre typer innhold</option> \
3496
		[% ELSE %] \
3497
		<option value="z">z Andre typer innhold</option> \
3498
		[% END %] \
3499
</select> \
3500
		 </td></tr> \
3501
		 		 <tr> \
3502
		 <td>32-34 Udefinert</td> \
3503
		 <td> \
3504
		 <input type="hidden" name="f32" id="f32" value=" " /> \
3505
		 <input type="hidden" name="f33" id="f33" value=" " /> \
3506
		 <input type="hidden" name="f34" id="f34" value=" " /> \
3507
		 </td></tr> \
3508
		</table>';
3509
		break;
3510
  case "fv":
3511
    divOutput.innerHTML='<table> \
3512
				 		 <tr> \
3513
		 <td>18-20 Spilletid for filmer og videogrammer</td> \
3514
		 <td> \
3515
		 (Feltet er ikke tilgjengelig) \
3516
		 <input type="hidden" name="f18" id="f18" value=" " /> \
3517
		 <input type="hidden" name="f19" id="f19" value=" " /> \
3518
		 <input type="hidden" name="f20" id="f20" value=" " /> \
3519
		 </td></tr> \
3520
		 				 		 <tr> \
3521
		 <td>21 Udefinert</td> \
3522
		 <td> \
3523
		 <input type="hidden" name="f21" id="f21" value=" " /> \
3524
		 </td></tr> \
3525
		 <tr> \
3526
		 <td>22 Målgruppe / Intellektuelt nivå</td> \
3527
		 <td> \
3528
        <select name="f22" id="f22"> \
3529
	[% IF ( f22 ) %] \
3530
		<option value=" " selected="selected">^ Ikke angitt</option> \
3531
		[% ELSE %] \
3532
		<option value=" ">^ Ikke angitt</option> \
3533
		[% END %] \
3534
	[% IF ( f221 ) %] \
3535
		<option value="1" selected="selected">1 Voksne over 18 år</option> \
3536
		[% ELSE %] \
3537
		<option value="1">1 Voksne over 18 år</option> \
3538
		[% END %] \
3539
	[% IF ( f222 ) %] \
3540
		<option value="2" selected="selected">2 Voksne over 15 år</option> \
3541
		[% ELSE %] \
3542
		<option value="2">2 Voksne over 15 år</option> \
3543
		[% END %] \
3544
	[% IF ( f224 ) %] \
3545
		<option value="4" selected="selected">4 Ungdom over 12 år</option> \
3546
		[% ELSE %] \
3547
		<option value="4">4 Ungdom over 12 år</option> \
3548
		[% END %] \
3549
	[% IF ( f225 ) %] \
3550
		<option value="5" selected="selected">5 Barn over 7 år</option> \
3551
		[% ELSE %] \
3552
		<option value="5">5 Barn over 7 år</option> \
3553
		[% END %] \
3554
	[% IF ( f226 ) %] \
3555
		<option value="6" selected="selected">6 Småbarn</option> \
3556
		[% ELSE %] \
3557
		<option value="6">6 Småbarn</option> \
3558
		[% END %] \
3559
	[% IF ( f22a ) %] \
3560
		<option value="a" selected="selected">a Voksne</option> \
3561
		[% ELSE %] \
3562
		<option value="a">a Voksne</option> \
3563
		[% END %] \
3564
	[% IF ( f22f ) %] \
3565
		<option value="f" selected="selected">f Spesialisert</option> \
3566
		[% ELSE %] \
3567
		<option value="f">f Spesialisert</option> \
3568
		[% END %] \
3569
	[% IF ( f22g ) %] \
3570
		<option value="g" selected="selected">g Generell</option> \
3571
		[% ELSE %] \
3572
		<option value="g">g Generell</option> \
3573
		[% END %] \
3574
	[% IF ( f22j ) %] \
3575
		<option value="j" selected="selected">j Barn og ungdom</option> \
3576
		[% ELSE %] \
3577
		<option value="j">j Barn og ungdom</option> \
3578
		[% END %] \
3579
	[% IF ( f22u ) %] \
3580
		<option value="u" selected="selected">u Ukjent</option> \
3581
		[% ELSE %] \
3582
		<option value="u">u Ukjent</option> \
3583
		[% END %] \
3584
</select> \
3585
		 </td></tr> \
3586
		 <tr> \
3587
		 <td>23 Medfølgende materiale</td> \
3588
		 <td> \
3589
        <select name="f23" id="f23"> \
3590
	[% IF ( f23 ) %] \
3591
		<option value=" " selected="selected">^ Ikke angitt</option> \
3592
		[% ELSE %] \
3593
		<option value=" ">^ Ikke angitt</option> \
3594
		[% END %] \
3595
	[% IF ( f23l ) %] \
3596
		<option value="l" selected="selected">l Stillbilder (fra filmen)</option> \
3597
		[% ELSE %] \
3598
		<option value="l">l Stillbilder (fra filmen)</option> \
3599
		[% END %] \
3600
	[% IF ( f23m ) %] \
3601
		<option value="m" selected="selected">m Manuskriptmateriale o.l.</option> \
3602
		[% ELSE %] \
3603
		<option value="m">m Manuskriptmateriale o.l.</option> \
3604
		[% END %] \
3605
	[% IF ( f23n ) %] \
3606
		<option value="n" selected="selected">n Intet medfølgende materiale</option> \
3607
		[% ELSE %] \
3608
		<option value="n">n Intet medfølgende materiale</option> \
3609
		[% END %] \
3610
	[% IF ( f23o ) %] \
3611
		<option value="o" selected="selected">o Plakater</option> \
3612
		[% ELSE %] \
3613
		<option value="o">o Plakater</option> \
3614
		[% END %] \
3615
	[% IF ( f23p ) %] \
3616
		<option value="p" selected="selected">p Pressemateriale</option> \
3617
		[% ELSE %] \
3618
		<option value="p">p Pressemateriale</option> \
3619
		[% END %] \
3620
	[% IF ( f23r ) %] \
3621
		<option value="r" selected="selected">r Instruksjonsmateriale</option> \
3622
		[% ELSE %] \
3623
		<option value="r">r Instruksjonsmateriale</option> \
3624
		[% END %] \
3625
	[% IF ( f23s ) %] \
3626
		<option value="s" selected="selected">s Musikkpartiturer eller andre musikktrykk</option> \
3627
		[% ELSE %] \
3628
		<option value="s">s Musikkpartiturer eller andre musikktrykk</option> \
3629
		[% END %] \
3630
	[% IF ( f23z ) %] \
3631
		<option value="z" selected="selected">z Annet medfølgende materiale</option> \
3632
		[% ELSE %] \
3633
		<option value="z">z Annet medfølgende materiale</option> \
3634
		[% END %] \
3635
</select> \
3636
		 </td></tr> \
3637
		 <tr> \
3638
		 <td>24 Medfølgende materiale</td> \
3639
		 <td> \
3640
        <select name="f24" id="f24"> \
3641
	[% IF ( f24 ) %] \
3642
		<option value=" " selected="selected">^ Ikke angitt</option> \
3643
		[% ELSE %] \
3644
		<option value=" ">^ Ikke angitt</option> \
3645
		[% END %] \
3646
	[% IF ( f24l ) %] \
3647
		<option value="l" selected="selected">l Stillbilder (fra filmen)</option> \
3648
		[% ELSE %] \
3649
		<option value="l">l Stillbilder (fra filmen)</option> \
3650
		[% END %] \
3651
	[% IF ( f24m ) %] \
3652
		<option value="m" selected="selected">m Manuskriptmateriale o.l.</option> \
3653
		[% ELSE %] \
3654
		<option value="m">m Manuskriptmateriale o.l.</option> \
3655
		[% END %] \
3656
	[% IF ( f24n ) %] \
3657
		<option value="n" selected="selected">n Intet medfølgende materiale</option> \
3658
		[% ELSE %] \
3659
		<option value="n">n Intet medfølgende materiale</option> \
3660
		[% END %] \
3661
	[% IF ( f24o ) %] \
3662
		<option value="o" selected="selected">o Plakater</option> \
3663
		[% ELSE %] \
3664
		<option value="o">o Plakater</option> \
3665
		[% END %] \
3666
	[% IF ( f24p ) %] \
3667
		<option value="p" selected="selected">p Pressemateriale</option> \
3668
		[% ELSE %] \
3669
		<option value="p">p Pressemateriale</option> \
3670
		[% END %] \
3671
	[% IF ( f24r ) %] \
3672
		<option value="r" selected="selected">r Instruksjonsmateriale</option> \
3673
		[% ELSE %] \
3674
		<option value="r">r Instruksjonsmateriale</option> \
3675
		[% END %] \
3676
	[% IF ( f24s ) %] \
3677
		<option value="s" selected="selected">s Musikkpartiturer eller andre musikktrykk</option> \
3678
		[% ELSE %] \
3679
		<option value="s">s Musikkpartiturer eller andre musikktrykk</option> \
3680
		[% END %] \
3681
	[% IF ( f24z ) %] \
3682
		<option value="z" selected="selected">z Annet medfølgende materiale</option> \
3683
		[% ELSE %] \
3684
		<option value="z">z Annet medfølgende materiale</option> \
3685
		[% END %] \
3686
</select> \
3687
		 </td></tr> \
3688
		 <tr> \
3689
		 <td>25 Medfølgende materiale</td> \
3690
		 <td> \
3691
        <select name="f25" id="f25"> \
3692
	[% IF ( f25 ) %] \
3693
		<option value=" " selected="selected">^ Ikke angitt</option> \
3694
		[% ELSE %] \
3695
		<option value=" ">^ Ikke angitt</option> \
3696
		[% END %] \
3697
	[% IF ( f25l ) %] \
3698
		<option value="l" selected="selected">l Stillbilder (fra filmen)</option> \
3699
		[% ELSE %] \
3700
		<option value="l">l Stillbilder (fra filmen)</option> \
3701
		[% END %] \
3702
	[% IF ( f25m ) %] \
3703
		<option value="m" selected="selected">m Manuskriptmateriale o.l.</option> \
3704
		[% ELSE %] \
3705
		<option value="m">m Manuskriptmateriale o.l.</option> \
3706
		[% END %] \
3707
	[% IF ( f25n ) %] \
3708
		<option value="n" selected="selected">n Intet medfølgende materiale</option> \
3709
		[% ELSE %] \
3710
		<option value="n">n Intet medfølgende materiale</option> \
3711
		[% END %] \
3712
	[% IF ( f25o ) %] \
3713
		<option value="o" selected="selected">o Plakater</option> \
3714
		[% ELSE %] \
3715
		<option value="o">o Plakater</option> \
3716
		[% END %] \
3717
	[% IF ( f25p ) %] \
3718
		<option value="p" selected="selected">p Pressemateriale</option> \
3719
		[% ELSE %] \
3720
		<option value="p">p Pressemateriale</option> \
3721
		[% END %] \
3722
	[% IF ( f25r ) %] \
3723
		<option value="r" selected="selected">r Instruksjonsmateriale</option> \
3724
		[% ELSE %] \
3725
		<option value="r">r Instruksjonsmateriale</option> \
3726
		[% END %] \
3727
	[% IF ( f25s ) %] \
3728
		<option value="s" selected="selected">s Musikkpartiturer eller andre musikktrykk</option> \
3729
		[% ELSE %] \
3730
		<option value="s">s Musikkpartiturer eller andre musikktrykk</option> \
3731
		[% END %] \
3732
	[% IF ( f25z ) %] \
3733
		<option value="z" selected="selected">z Annet medfølgende materiale</option> \
3734
		[% ELSE %] \
3735
		<option value="z">z Annet medfølgende materiale</option> \
3736
		[% END %] \
3737
</select> \
3738
		 </td></tr> \
3739
		 <tr> \
3740
		 <td>26 Medfølgende materiale</td> \
3741
		 <td> \
3742
        <select name="f26" id="f26"> \
3743
	[% IF ( f26 ) %] \
3744
		<option value=" " selected="selected">^ Ikke angitt</option> \
3745
		[% ELSE %] \
3746
		<option value=" ">^ Ikke angitt</option> \
3747
		[% END %] \
3748
	[% IF ( f26l ) %] \
3749
		<option value="l" selected="selected">l Stillbilder (fra filmen)</option> \
3750
		[% ELSE %] \
3751
		<option value="l">l Stillbilder (fra filmen)</option> \
3752
		[% END %] \
3753
	[% IF ( f26m ) %] \
3754
		<option value="m" selected="selected">m Manuskriptmateriale o.l.</option> \
3755
		[% ELSE %] \
3756
		<option value="m">m Manuskriptmateriale o.l.</option> \
3757
		[% END %] \
3758
	[% IF ( f26n ) %] \
3759
		<option value="n" selected="selected">n Intet medfølgende materiale</option> \
3760
		[% ELSE %] \
3761
		<option value="n">n Intet medfølgende materiale</option> \
3762
		[% END %] \
3763
	[% IF ( f26o ) %] \
3764
		<option value="o" selected="selected">o Plakater</option> \
3765
		[% ELSE %] \
3766
		<option value="o">o Plakater</option> \
3767
		[% END %] \
3768
	[% IF ( f26p ) %] \
3769
		<option value="p" selected="selected">p Pressemateriale</option> \
3770
		[% ELSE %] \
3771
		<option value="p">p Pressemateriale</option> \
3772
		[% END %] \
3773
	[% IF ( f26r ) %] \
3774
		<option value="r" selected="selected">r Instruksjonsmateriale</option> \
3775
		[% ELSE %] \
3776
		<option value="r">r Instruksjonsmateriale</option> \
3777
		[% END %] \
3778
	[% IF ( f26s ) %] \
3779
		<option value="s" selected="selected">s Musikkpartiturer eller andre musikktrykk</option> \
3780
		[% ELSE %] \
3781
		<option value="s">s Musikkpartiturer eller andre musikktrykk</option> \
3782
		[% END %] \
3783
	[% IF ( f26z ) %] \
3784
		<option value="z" selected="selected">z Annet medfølgende materiale</option> \
3785
		[% ELSE %] \
3786
		<option value="z">z Annet medfølgende materiale</option> \
3787
		[% END %] \
3788
</select> \
3789
		 </td></tr> \
3790
		 <tr> \
3791
		 <td>27 Medfølgende materiale</td> \
3792
		 <td> \
3793
        <select name="f27" id="f27"> \
3794
	[% IF ( f27 ) %] \
3795
		<option value=" " selected="selected">^ Ikke angitt</option> \
3796
		[% ELSE %] \
3797
		<option value=" ">^ Ikke angitt</option> \
3798
		[% END %] \
3799
	[% IF ( f27l ) %] \
3800
		<option value="l" selected="selected">l Stillbilder (fra filmen)</option> \
3801
		[% ELSE %] \
3802
		<option value="l">l Stillbilder (fra filmen)</option> \
3803
		[% END %] \
3804
	[% IF ( f27m ) %] \
3805
		<option value="m" selected="selected">m Manuskriptmateriale o.l.</option> \
3806
		[% ELSE %] \
3807
		<option value="m">m Manuskriptmateriale o.l.</option> \
3808
		[% END %] \
3809
	[% IF ( f27n ) %] \
3810
		<option value="n" selected="selected">n Intet medfølgende materiale</option> \
3811
		[% ELSE %] \
3812
		<option value="n">n Intet medfølgende materiale</option> \
3813
		[% END %] \
3814
	[% IF ( f27o ) %] \
3815
		<option value="o" selected="selected">o Plakater</option> \
3816
		[% ELSE %] \
3817
		<option value="o">o Plakater</option> \
3818
		[% END %] \
3819
	[% IF ( f27p ) %] \
3820
		<option value="p" selected="selected">p Pressemateriale</option> \
3821
		[% ELSE %] \
3822
		<option value="p">p Pressemateriale</option> \
3823
		[% END %] \
3824
	[% IF ( f27r ) %] \
3825
		<option value="r" selected="selected">r Instruksjonsmateriale</option> \
3826
		[% ELSE %] \
3827
		<option value="r">r Instruksjonsmateriale</option> \
3828
		[% END %] \
3829
	[% IF ( f27s ) %] \
3830
		<option value="s" selected="selected">s Musikkpartiturer eller andre musikktrykk</option> \
3831
		[% ELSE %] \
3832
		<option value="s">s Musikkpartiturer eller andre musikktrykk</option> \
3833
		[% END %] \
3834
	[% IF ( f27z ) %] \
3835
		<option value="z" selected="selected">z Annet medfølgende materiale</option> \
3836
		[% ELSE %] \
3837
		<option value="z">z Annet medfølgende materiale</option> \
3838
		[% END %] \
3839
</select> \
3840
		 </td></tr> \
3841
		 <tr> \
3842
		 <td>28 Offentlig publikasjon</td> \
3843
		 <td> \
3844
        <select name="f28" id="f28"> \
3845
	[% IF ( f28 ) %] \
3846
		<option value=" " selected="selected">^ Ikke angitt</option> \
3847
		[% ELSE %] \
3848
		<option value=" ">^ Ikke angitt</option> \
3849
		[% END %] \
3850
	[% IF ( f280 ) %] \
3851
		<option value="0" selected="selected">0 Ikke offentlig publikasjon</option> \
3852
		[% ELSE %] \
3853
		<option value="0">0 Ikke offentlig publikasjon</option> \
3854
		[% END %] \
3855
	[% IF ( f281 ) %] \
3856
		<option value="1" selected="selected">1 Offentlig publikasjon</option> \
3857
		[% ELSE %] \
3858
		<option value="1">1 Offentlig publikasjon</option> \
3859
		[% END %] \
3860
	[% IF ( f28b ) %] \
3861
		<option value="b" selected="selected">b Kommunal publikasjon</option> \
3862
		[% ELSE %] \
3863
		<option value="b">b Kommunal publikasjon</option> \
3864
		[% END %] \
3865
	[% IF ( f28c ) %] \
3866
		<option value="c" selected="selected">c Fylkeskommunal publikasjon</option> \
3867
		[% ELSE %] \
3868
		<option value="c">c Fylkeskommunal publikasjon</option> \
3869
		[% END %] \
3870
	[% IF ( f28d ) %] \
3871
		<option value="d" selected="selected">d Publikasjon fra regjeringer, departementer, direktorater, offentlige utvalg o.l.</option> \
3872
		[% ELSE %] \
3873
		<option value="d">d Publikasjon fra regjeringer, departementer, direktorater, offentlige utvalg o.l.</option> \
3874
		[% END %] \
3875
	[% IF ( f28e ) %] \
3876
		<option value="e" selected="selected">e Publikasjon fra andre statlige institusjoner, f.eks. Statens kartverk</option> \
3877
		[% ELSE %] \
3878
		<option value="e">e Publikasjon fra andre statlige institusjoner, f.eks. Statens kartverk</option> \
3879
		[% END %] \
3880
</select> \
3881
		 </td></tr> \
3882
		 		 				 		 <tr> \
3883
		 <td>29-33 Udefinert</td> \
3884
		 <td> \
3885
		 <input type="hidden" name="f29" id="f29" value=" " /> \
3886
		 <input type="hidden" name="f30" id="f30" value=" " /> \
3887
		 <input type="hidden" name="f31" id="f31" value=" " /> \
3888
		 <input type="hidden" name="f32" id="f32" value=" " /> \
3889
		 <input type="hidden" name="f33" id="f33" value=" " /> \
3890
		 </td></tr> \
3891
		 <tr> \
3892
		 <td>34 Teknikk</td> \
3893
		 <td> \
3894
        <select name="f34" id="f34"> \
3895
	[% IF ( f34 ) %] \
3896
		<option value=" " selected="selected">^ Ikke angitt</option> \
3897
		[% ELSE %] \
3898
		<option value=" ">^ Ikke angitt</option> \
3899
		[% END %] \
3900
	[% IF ( f34a ) %] \
3901
		<option value="a" selected="selected">a Animasjon</option> \
3902
		[% ELSE %] \
3903
		<option value="a">a Animasjon</option> \
3904
		[% END %] \
3905
	[% IF ( f34c ) %] \
3906
		<option value="c" selected="selected">c Animasjon og levende bevegelse</option> \
3907
		[% ELSE %] \
3908
		<option value="c">c Animasjon og levende bevegelse</option> \
3909
		[% END %] \
3910
	[% IF ( f34l ) %] \
3911
		<option value="l" selected="selected">l Levende bevegelse</option> \
3912
		[% ELSE %] \
3913
		<option value="l">l Levende bevegelse</option> \
3914
		[% END %] \
3915
	[% IF ( f34u ) %] \
3916
		<option value="u" selected="selected">u Ukjent</option> \
3917
		[% ELSE %] \
3918
		<option value="u">u Ukjent</option> \
3919
		[% END %] \
3920
	[% IF ( f34z ) %] \
3921
		<option value="z" selected="selected">z Annen teknikk</option> \
3922
		[% ELSE %] \
3923
		<option value="z">z Annen teknikk</option> \
3924
		[% END %] \
3925
</select> \
3926
		 </td></tr> \
3927
		</table>';
3928
		break;
3929
  case "kar":
3930
    divOutput.innerHTML='<table> \
3931
		<tr> \
3932
		 <td>18 Relieff</td> \
3933
		 <td> \
3934
        <select name="f18" id="f18"> \
3935
	[% IF ( f18 ) %] \
3936
		<option value=" " selected="selected">^ Ikke angitt</option> \
3937
		[% ELSE %] \
3938
		<option value=" ">^ Ikke angitt</option> \
3939
		[% END %] \
3940
	[% IF ( f18a ) %] \
3941
		<option value="a" selected="selected">a Høydekurver</option> \
3942
		[% ELSE %] \
3943
		<option value="a">a Høydekurver</option> \
3944
		[% END %] \
3945
	[% IF ( f18b ) %] \
3946
		<option value="b" selected="selected">b Skyggelegging</option> \
3947
		[% ELSE %] \
3948
		<option value="b">b Skyggelegging</option> \
3949
		[% END %] \
3950
	[% IF ( f18c ) %] \
3951
		<option value="c" selected="selected">c Graderte fargetoner</option> \
3952
		[% ELSE %] \
3953
		<option value="c">c Graderte fargetoner</option> \
3954
		[% END %] \
3955
	[% IF ( f18d ) %] \
3956
		<option value="d" selected="selected">d Bakkestreker</option> \
3957
		[% ELSE %] \
3958
		<option value="d">d Bakkestreker</option> \
3959
		[% END %] \
3960
	[% IF ( f18e ) %] \
3961
		<option value="e" selected="selected">e Dybdepunkt</option> \
3962
		[% ELSE %] \
3963
		<option value="e">e Dybdepunkt</option> \
3964
		[% END %] \
3965
	[% IF ( f18f ) %] \
3966
		<option value="f" selected="selected">f Formlinjer</option> \
3967
		[% ELSE %] \
3968
		<option value="f">f Formlinjer</option> \
3969
		[% END %] \
3970
	[% IF ( f18g ) %] \
3971
		<option value="g" selected="selected">g Høydepunkt</option> \
3972
		[% ELSE %] \
3973
		<option value="g">g Høydepunkt</option> \
3974
		[% END %] \
3975
	[% IF ( f18i ) %] \
3976
		<option value="i" selected="selected">i Punktsymboler</option> \
3977
		[% ELSE %] \
3978
		<option value="i">i Punktsymboler</option> \
3979
		[% END %] \
3980
	[% IF ( f18j ) %] \
3981
		<option value="j" selected="selected">j Landformer</option> \
3982
		[% ELSE %] \
3983
		<option value="j">j Landformer</option> \
3984
		[% END %] \
3985
	[% IF ( f18k ) %] \
3986
		<option value="k" selected="selected">k Dybdekurver (isobater)</option> \
3987
		[% ELSE %] \
3988
		<option value="k">k Dybdekurver (isobater)</option> \
3989
		[% END %] \
3990
	[% IF ( f18n ) %] \
3991
		<option value="n" selected="selected">n Ingen relieff er vist på kartet</option> \
3992
		[% ELSE %] \
3993
		<option value="n">n Ingen relieff er vist på kartet</option> \
3994
		[% END %] \
3995
	[% IF ( f18z ) %] \
3996
		<option value="z" selected="selected">z Andre reliefftyper</option> \
3997
		[% ELSE %] \
3998
		<option value="z">z Andre reliefftyper</option> \
3999
		[% END %] \
4000
</select> \
4001
		 </td></tr> \
4002
		 <tr> \
4003
		 <td>19 Relieff</td> \
4004
		 <td> \
4005
        <select name="f19" id="f19"> \
4006
	[% IF ( f19 ) %] \
4007
		<option value=" " selected="selected">^ Ikke angitt</option> \
4008
		[% ELSE %] \
4009
		<option value=" ">^ Ikke angitt</option> \
4010
		[% END %] \
4011
	[% IF ( f19a ) %] \
4012
		<option value="a" selected="selected">a Høydekurver</option> \
4013
		[% ELSE %] \
4014
		<option value="a">a Høydekurver</option> \
4015
		[% END %] \
4016
	[% IF ( f19b ) %] \
4017
		<option value="b" selected="selected">b Skyggelegging</option> \
4018
		[% ELSE %] \
4019
		<option value="b">b Skyggelegging</option> \
4020
		[% END %] \
4021
	[% IF ( f19c ) %] \
4022
		<option value="c" selected="selected">c Graderte fargetoner</option> \
4023
		[% ELSE %] \
4024
		<option value="c">c Graderte fargetoner</option> \
4025
		[% END %] \
4026
	[% IF ( f19d ) %] \
4027
		<option value="d" selected="selected">d Bakkestreker</option> \
4028
		[% ELSE %] \
4029
		<option value="d">d Bakkestreker</option> \
4030
		[% END %] \
4031
	[% IF ( f19e ) %] \
4032
		<option value="e" selected="selected">e Dybdepunkt</option> \
4033
		[% ELSE %] \
4034
		<option value="e">e Dybdepunkt</option> \
4035
		[% END %] \
4036
	[% IF ( f19f ) %] \
4037
		<option value="f" selected="selected">f Formlinjer</option> \
4038
		[% ELSE %] \
4039
		<option value="f">f Formlinjer</option> \
4040
		[% END %] \
4041
	[% IF ( f19g ) %] \
4042
		<option value="g" selected="selected">g Høydepunkt</option> \
4043
		[% ELSE %] \
4044
		<option value="g">g Høydepunkt</option> \
4045
		[% END %] \
4046
	[% IF ( f19i ) %] \
4047
		<option value="i" selected="selected">i Punktsymboler</option> \
4048
		[% ELSE %] \
4049
		<option value="i">i Punktsymboler</option> \
4050
		[% END %] \
4051
	[% IF ( f19j ) %] \
4052
		<option value="j" selected="selected">j Landformer</option> \
4053
		[% ELSE %] \
4054
		<option value="j">j Landformer</option> \
4055
		[% END %] \
4056
	[% IF ( f19k ) %] \
4057
		<option value="k" selected="selected">k Dybdekurver (isobater)</option> \
4058
		[% ELSE %] \
4059
		<option value="k">k Dybdekurver (isobater)</option> \
4060
		[% END %] \
4061
	[% IF ( f19n ) %] \
4062
		<option value="n" selected="selected">n Ingen relieff er vist på kartet</option> \
4063
		[% ELSE %] \
4064
		<option value="n">n Ingen relieff er vist på kartet</option> \
4065
		[% END %] \
4066
	[% IF ( f19z ) %] \
4067
		<option value="z" selected="selected">z Andre reliefftyper</option> \
4068
		[% ELSE %] \
4069
		<option value="z">z Andre reliefftyper</option> \
4070
		[% END %] \
4071
</select> \
4072
		 </td></tr> \
4073
		 <tr> \
4074
		 <td>20 Relieff</td> \
4075
		 <td> \
4076
        <select name="f20" id="f20"> \
4077
	[% IF ( f20 ) %] \
4078
		<option value=" " selected="selected">^ Ikke angitt</option> \
4079
		[% ELSE %] \
4080
		<option value=" ">^ Ikke angitt</option> \
4081
		[% END %] \
4082
	[% IF ( f20a ) %] \
4083
		<option value="a" selected="selected">a Høydekurver</option> \
4084
		[% ELSE %] \
4085
		<option value="a">a Høydekurver</option> \
4086
		[% END %] \
4087
	[% IF ( f20b ) %] \
4088
		<option value="b" selected="selected">b Skyggelegging</option> \
4089
		[% ELSE %] \
4090
		<option value="b">b Skyggelegging</option> \
4091
		[% END %] \
4092
	[% IF ( f20c ) %] \
4093
		<option value="c" selected="selected">c Graderte fargetoner</option> \
4094
		[% ELSE %] \
4095
		<option value="c">c Graderte fargetoner</option> \
4096
		[% END %] \
4097
	[% IF ( f20d ) %] \
4098
		<option value="d" selected="selected">d Bakkestreker</option> \
4099
		[% ELSE %] \
4100
		<option value="d">d Bakkestreker</option> \
4101
		[% END %] \
4102
	[% IF ( f20e ) %] \
4103
		<option value="e" selected="selected">e Dybdepunkt</option> \
4104
		[% ELSE %] \
4105
		<option value="e">e Dybdepunkt</option> \
4106
		[% END %] \
4107
	[% IF ( f20f ) %] \
4108
		<option value="f" selected="selected">f Formlinjer</option> \
4109
		[% ELSE %] \
4110
		<option value="f">f Formlinjer</option> \
4111
		[% END %] \
4112
	[% IF ( f20g ) %] \
4113
		<option value="g" selected="selected">g Høydepunkt</option> \
4114
		[% ELSE %] \
4115
		<option value="g">g Høydepunkt</option> \
4116
		[% END %] \
4117
	[% IF ( f20i ) %] \
4118
		<option value="i" selected="selected">i Punktsymboler</option> \
4119
		[% ELSE %] \
4120
		<option value="i">i Punktsymboler</option> \
4121
		[% END %] \
4122
	[% IF ( f20j ) %] \
4123
		<option value="j" selected="selected">j Landformer</option> \
4124
		[% ELSE %] \
4125
		<option value="j">j Landformer</option> \
4126
		[% END %] \
4127
	[% IF ( f20k ) %] \
4128
		<option value="k" selected="selected">k Dybdekurver (isobater)</option> \
4129
		[% ELSE %] \
4130
		<option value="k">k Dybdekurver (isobater)</option> \
4131
		[% END %] \
4132
	[% IF ( f20n ) %] \
4133
		<option value="n" selected="selected">n Ingen relieff er vist på kartet</option> \
4134
		[% ELSE %] \
4135
		<option value="n">n Ingen relieff er vist på kartet</option> \
4136
		[% END %] \
4137
	[% IF ( f20z ) %] \
4138
		<option value="z" selected="selected">z Andre reliefftyper</option> \
4139
		[% ELSE %] \
4140
		<option value="z">z Andre reliefftyper</option> \
4141
		[% END %] \
4142
</select> \
4143
		 </td></tr> \
4144
		 <tr> \
4145
		 <td>21 Relieff</td> \
4146
		 <td> \
4147
        <select name="f21" id="f21"> \
4148
	[% IF ( f21 ) %] \
4149
		<option value=" " selected="selected">^ Ikke angitt</option> \
4150
		[% ELSE %] \
4151
		<option value=" ">^ Ikke angitt</option> \
4152
		[% END %] \
4153
	[% IF ( f21a ) %] \
4154
		<option value="a" selected="selected">a Høydekurver</option> \
4155
		[% ELSE %] \
4156
		<option value="a">a Høydekurver</option> \
4157
		[% END %] \
4158
	[% IF ( f21b ) %] \
4159
		<option value="b" selected="selected">b Skyggelegging</option> \
4160
		[% ELSE %] \
4161
		<option value="b">b Skyggelegging</option> \
4162
		[% END %] \
4163
	[% IF ( f21c ) %] \
4164
		<option value="c" selected="selected">c Graderte fargetoner</option> \
4165
		[% ELSE %] \
4166
		<option value="c">c Graderte fargetoner</option> \
4167
		[% END %] \
4168
	[% IF ( f21d ) %] \
4169
		<option value="d" selected="selected">d Bakkestreker</option> \
4170
		[% ELSE %] \
4171
		<option value="d">d Bakkestreker</option> \
4172
		[% END %] \
4173
	[% IF ( f21e ) %] \
4174
		<option value="e" selected="selected">e Dybdepunkt</option> \
4175
		[% ELSE %] \
4176
		<option value="e">e Dybdepunkt</option> \
4177
		[% END %] \
4178
	[% IF ( f21f ) %] \
4179
		<option value="f" selected="selected">f Formlinjer</option> \
4180
		[% ELSE %] \
4181
		<option value="f">f Formlinjer</option> \
4182
		[% END %] \
4183
	[% IF ( f21g ) %] \
4184
		<option value="g" selected="selected">g Høydepunkt</option> \
4185
		[% ELSE %] \
4186
		<option value="g">g Høydepunkt</option> \
4187
		[% END %] \
4188
	[% IF ( f21i ) %] \
4189
		<option value="i" selected="selected">i Punktsymboler</option> \
4190
		[% ELSE %] \
4191
		<option value="i">i Punktsymboler</option> \
4192
		[% END %] \
4193
	[% IF ( f21j ) %] \
4194
		<option value="j" selected="selected">j Landformer</option> \
4195
		[% ELSE %] \
4196
		<option value="j">j Landformer</option> \
4197
		[% END %] \
4198
	[% IF ( f21k ) %] \
4199
		<option value="k" selected="selected">k Dybdekurver (isobater)</option> \
4200
		[% ELSE %] \
4201
		<option value="k">k Dybdekurver (isobater)</option> \
4202
		[% END %] \
4203
	[% IF ( f21n ) %] \
4204
		<option value="n" selected="selected">n Ingen relieff er vist på kartet</option> \
4205
		[% ELSE %] \
4206
		<option value="n">n Ingen relieff er vist på kartet</option> \
4207
		[% END %] \
4208
	[% IF ( f21z ) %] \
4209
		<option value="z" selected="selected">z Andre reliefftyper</option> \
4210
		[% ELSE %] \
4211
		<option value="z">z Andre reliefftyper</option> \
4212
		[% END %] \
4213
</select> \
4214
		 </td></tr> \
4215
		 <tr> \
4216
		 <td>22 Projeksjon</td> \
4217
		 <td> \
4218
        <select name="f22" id="f22"> \
4219
	[% IF ( f22 ) %] \
4220
		<option value=" " selected="selected">^ Ikke angitt</option> \
4221
		[% ELSE %] \
4222
		<option value=" ">^ Ikke angitt</option> \
4223
		[% END %] \
4224
	[% IF ( f22a ) %] \
4225
		<option value="a" selected="selected">a Planprojeksjon</option> \
4226
		[% ELSE %] \
4227
		<option value="a">a Planprojeksjon</option> \
4228
		[% END %] \
4229
	[% IF ( f22b ) %] \
4230
		<option value="b" selected="selected">b Sylinderprojeksjon</option> \
4231
		[% ELSE %] \
4232
		<option value="b">b Sylinderprojeksjon</option> \
4233
		[% END %] \
4234
	[% IF ( f22c ) %] \
4235
		<option value="c" selected="selected">c Kjegleprojeksjon</option> \
4236
		[% ELSE %] \
4237
		<option value="c">c Kjegleprojeksjon</option> \
4238
		[% END %] \
4239
	[% IF ( f22z ) %] \
4240
		<option value="z" selected="selected">z Annen projeksjon</option> \
4241
		[% ELSE %] \
4242
		<option value="z">z Annen projeksjon</option> \
4243
		[% END %] \
4244
</select> \
4245
		 </td></tr> \
4246
		 <tr> \
4247
		 <td>23 Projeksjon</td> \
4248
		 <td> \
4249
        <select name="f23" id="f23"> \
4250
	[% IF ( f23 ) %] \
4251
		<option value=" " selected="selected">^ Ikke angitt</option> \
4252
		[% ELSE %] \
4253
		<option value=" ">^ Ikke angitt</option> \
4254
		[% END %] \
4255
	[% IF ( f23a ) %] \
4256
		<option value="a" selected="selected">a Planprojeksjon</option> \
4257
		[% ELSE %] \
4258
		<option value="a">a Planprojeksjon</option> \
4259
		[% END %] \
4260
	[% IF ( f23b ) %] \
4261
		<option value="b" selected="selected">b Sylinderprojeksjon</option> \
4262
		[% ELSE %] \
4263
		<option value="b">b Sylinderprojeksjon</option> \
4264
		[% END %] \
4265
	[% IF ( f23c ) %] \
4266
		<option value="c" selected="selected">c Kjegleprojeksjon</option> \
4267
		[% ELSE %] \
4268
		<option value="c">c Kjegleprojeksjon</option> \
4269
		[% END %] \
4270
	[% IF ( f23z ) %] \
4271
		<option value="z" selected="selected">z Annen projeksjon</option> \
4272
		[% ELSE %] \
4273
		<option value="z">z Annen projeksjon</option> \
4274
		[% END %] \
4275
</select> \
4276
		 </td></tr> \
4277
		 		 		 				 		 <tr> \
4278
		 <td>24-27 Udefinert</td> \
4279
		 <td> \
4280
		 <input type="hidden" name="f24" id="f24" value=" " /> \
4281
		 <input type="hidden" name="f25" id="f25" value=" " /> \
4282
		 <input type="hidden" name="f26" id="f26" value=" " /> \
4283
		 <input type="hidden" name="f27" id="f27" value=" " /> \
4284
		 </td></tr> \
4285
		 <tr> \
4286
		 <td>28 Offentlig publikasjon</td> \
4287
		 <td> \
4288
        <select name="f28" id="f28"> \
4289
	[% IF ( f28 ) %] \
4290
		<option value=" " selected="selected">^ Ikke angitt</option> \
4291
		[% ELSE %] \
4292
		<option value=" ">^ Ikke angitt</option> \
4293
		[% END %] \
4294
	[% IF ( f280 ) %] \
4295
		<option value="0" selected="selected">0 Ikke offentlig publikasjon</option> \
4296
		[% ELSE %] \
4297
		<option value="0">0 Ikke offentlig publikasjon</option> \
4298
		[% END %] \
4299
	[% IF ( f281 ) %] \
4300
		<option value="1" selected="selected">1 Offentlig publikasjon</option> \
4301
		[% ELSE %] \
4302
		<option value="1">1 Offentlig publikasjon</option> \
4303
		[% END %] \
4304
	[% IF ( f28b ) %] \
4305
		<option value="b" selected="selected">b Kommunal publikasjon</option> \
4306
		[% ELSE %] \
4307
		<option value="b">b Kommunal publikasjon</option> \
4308
		[% END %] \
4309
	[% IF ( f28c ) %] \
4310
		<option value="c" selected="selected">c Fylkeskommunal publikasjon</option> \
4311
		[% ELSE %] \
4312
		<option value="c">c Fylkeskommunal publikasjon</option> \
4313
		[% END %] \
4314
	[% IF ( f28d ) %] \
4315
		<option value="d" selected="selected">d Publikasjon fra regjeringer, departementer, direktorater, offentlige utvalg o.l.</option> \
4316
		[% ELSE %] \
4317
		<option value="d">d Publikasjon fra regjeringer, departementer, direktorater, offentlige utvalg o.l.</option> \
4318
		[% END %] \
4319
	[% IF ( f28e ) %] \
4320
		<option value="e" selected="selected">e Publikasjon fra andre statlige institusjoner, f.eks. Statens kartverk</option> \
4321
		[% ELSE %] \
4322
		<option value="e">e Publikasjon fra andre statlige institusjoner, f.eks. Statens kartverk</option> \
4323
		[% END %] \
4324
</select> \
4325
		 </td></tr> \
4326
		 		 		 		 				 		 <tr> \
4327
		 <td>29-30 Udefinert</td> \
4328
		 <td> \
4329
		 <input type="hidden" name="f29" id="f29" value=" " /> \
4330
		 <input type="hidden" name="f30" id="f30" value=" " /> \
4331
		 </td></tr> \
4332
		 <tr> \
4333
		 <td>31 Register</td> \
4334
	 <td> \
4335
        <select name="f31" id="f31"> \
4336
	[% IF ( f31 ) %] \
4337
		<option value=" " selected="selected">^ Ikke angitt</option> \
4338
		[% ELSE %] \
4339
		<option value=" ">^ Ikke angitt</option> \
4340
		[% END %] \
4341
	[% IF ( f310 ) %] \
4342
		<option value="0" selected="selected">0 Dokumentet har ikke register</option> \
4343
		[% ELSE %] \
4344
		<option value="0">0 Dokumentet har ikke register</option> \
4345
		[% END %] \
4346
	[% IF ( f311 ) %] \
4347
		<option value="1" selected="selected">1 Dokumentet har register</option> \
4348
		[% ELSE %] \
4349
		<option value="1">1 Dokumentet har register</option> \
4350
		[% END %] \
4351
</select> \
4352
		 </td></tr> \
4353
		 		 		 		 		 				 		 <tr> \
4354
		 <td>32 Udefinert</td> \
4355
		 <td> \
4356
		 <input type="hidden" name="f32" id="f32" value=" " /> \
4357
		 </td></tr> \
4358
		 <tr> \
4359
		 <td>33 Spesielle formatkarakteristika</td> \
4360
		 <td> \
4361
        <select name="f33" id="f33"> \
4362
	[% IF ( f33 ) %] \
4363
		<option value=" " selected="selected">^ Ikke angitt</option> \
4364
		[% ELSE %] \
4365
		<option value=" ">^ Ikke angitt</option> \
4366
		[% END %] \
4367
	[% IF ( f33j ) %] \
4368
		<option value="j" selected="selected">j Postkort o.l.</option> \
4369
		[% ELSE %] \
4370
		<option value="j">j Postkort o.l.</option> \
4371
		[% END %] \
4372
	[% IF ( f33k ) %] \
4373
		<option value="k" selected="selected">k Kalender</option> \
4374
		[% ELSE %] \
4375
		<option value="k">k Kalender</option> \
4376
		[% END %] \
4377
	[% IF ( f33l ) %] \
4378
		<option value="l" selected="selected">l Puslespill</option> \
4379
		[% ELSE %] \
4380
		<option value="l">l Puslespill</option> \
4381
		[% END %] \
4382
	[% IF ( f33m ) %] \
4383
		<option value="m" selected="selected">m Relieffkart med blindeskrift</option> \
4384
		[% ELSE %] \
4385
		<option value="m">m Relieffkart med blindeskrift</option> \
4386
		[% END %] \
4387
	[% IF ( f33n ) %] \
4388
		<option value="n" selected="selected">n Spill</option> \
4389
		[% ELSE %] \
4390
		<option value="n">n Spill</option> \
4391
		[% END %] \
4392
	[% IF ( f33o ) %] \
4393
		<option value="o" selected="selected">o Veggkart/rullegardinkart</option> \
4394
		[% ELSE %] \
4395
		<option value="o">o Veggkart/rullegardinkart</option> \
4396
		[% END %] \
4397
	[% IF ( f33p ) %] \
4398
		<option value="p" selected="selected">p Spillkort</option> \
4399
		[% ELSE %] \
4400
		<option value="p">p Spillkort</option> \
4401
		[% END %] \
4402
	[% IF ( f33z ) %] \
4403
		<option value="z" selected="selected">z Andre spesielle former for kart</option> \
4404
		[% ELSE %] \
4405
		<option value="z">z Andre spesielle former for kart</option> \
4406
		[% END %] \
4407
</select> \
4408
		 </td></tr> \
4409
		 <tr> \
4410
		 <td>34 Spesielle formatkarakteristika</td> \
4411
		 <td> \
4412
        <select name="f34" id="f34"> \
4413
	[% IF ( f34 ) %] \
4414
		<option value=" " selected="selected">^ Ikke angitt</option> \
4415
		[% ELSE %] \
4416
		<option value=" ">^ Ikke angitt</option> \
4417
		[% END %] \
4418
	[% IF ( f34j ) %] \
4419
		<option value="j" selected="selected">j Postkort o.l.</option> \
4420
		[% ELSE %] \
4421
		<option value="j">j Postkort o.l.</option> \
4422
		[% END %] \
4423
	[% IF ( f34k ) %] \
4424
		<option value="k" selected="selected">k Kalender</option> \
4425
		[% ELSE %] \
4426
		<option value="k">k Kalender</option> \
4427
		[% END %] \
4428
	[% IF ( f34l ) %] \
4429
		<option value="l" selected="selected">l Puslespill</option> \
4430
		[% ELSE %] \
4431
		<option value="l">l Puslespill</option> \
4432
		[% END %] \
4433
	[% IF ( f34m ) %] \
4434
		<option value="m" selected="selected">m Relieffkart med blindeskrift</option> \
4435
		[% ELSE %] \
4436
		<option value="m">m Relieffkart med blindeskrift</option> \
4437
		[% END %] \
4438
	[% IF ( f34n ) %] \
4439
		<option value="n" selected="selected">n Spill</option> \
4440
		[% ELSE %] \
4441
		<option value="n">n Spill</option> \
4442
		[% END %] \
4443
	[% IF ( f34o ) %] \
4444
		<option value="o" selected="selected">o Veggkart/rullegardinkart</option> \
4445
		[% ELSE %] \
4446
		<option value="o">o Veggkart/rullegardinkart</option> \
4447
		[% END %] \
4448
	[% IF ( f34p ) %] \
4449
		<option value="p" selected="selected">p Spillkort</option> \
4450
		[% ELSE %] \
4451
		<option value="p">p Spillkort</option> \
4452
		[% END %] \
4453
	[% IF ( f34z ) %] \
4454
		<option value="z" selected="selected">z Andre spesielle former for kart</option> \
4455
		[% ELSE %] \
4456
		<option value="z">z Andre spesielle former for kart</option> \
4457
		[% END %] \
4458
</select> \
4459
		 </td></tr> \
4460
		</table>';
4461
		break;
4462
	default:
4463
    divOutput.innerHTML="baz";
4464
	}
4465
}
4466
4467
// Pad the string with spaces so that it is 4 characters long.
4468
// Also, truncate strings that are longer than 4 characters.
4469
function pad4(s) {
4470
	var pad = "";
4471
	if (s.length < 4) {
4472
		var padLength = 4 - s.length;
4473
		for (var i = 0; i < 4 - s.length; i++) {
4474
			pad += " ";
4475
		}
4476
		s += pad;
4477
	} else {
4478
		s = s.substring(0, 4);
4479
	}
4480
	return s;
4481
}
4482
4483
function report() {
4484
            var doc   = opener.document; 
4485
            var field = doc.getElementById("[% index | html %]");
4486
            field.value = 
4487
			document.f_pop.f1.value+
4488
			document.f_pop.f6.value+
4489
			// bug 2563 {
4490
			( document.f_pop.f710.value.match(/^\s*$/)  ? "    " : pad4(document.f_pop.f710.value)  )+
4491
			( document.f_pop.f1114.value.match(/^\s*$/) ? "    " : pad4(document.f_pop.f1114.value) )+
4492
			// }
4493
			document.f_pop.f1517.value+
4494
			document.f_pop.f18.value+
4495
			document.f_pop.f19.value+
4496
			document.f_pop.f20.value+
4497
			document.f_pop.f21.value+
4498
			document.f_pop.f22.value+
4499
			document.f_pop.f23.value+
4500
			document.f_pop.f24.value+
4501
			document.f_pop.f25.value+
4502
			document.f_pop.f26.value+
4503
			document.f_pop.f27.value+
4504
			document.f_pop.f28.value+
4505
			document.f_pop.f29.value+
4506
			document.f_pop.f30.value+
4507
			document.f_pop.f31.value+
4508
			document.f_pop.f32.value+
4509
			document.f_pop.f33.value+
4510
			document.f_pop.f34.value+
4511
			document.f_pop.f3537.value+
4512
			document.f_pop.f38.value+
4513
			document.f_pop.f39.value;
4514
		self.close();
4515
		return false;
4516
	}
4517
	//]]>
4518
</script>
4519
4520
[% INCLUDE 'popup-bottom.inc' %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/normarc_leader.tt (-223 lines)
Lines 1-223 Link Here
1
[% INCLUDE 'doc-head-open.inc' %]
2
<title>000 - Bygging av postens hode &rsaquo; Cataloging &rsaquo; Koha</title>
3
[% INCLUDE 'doc-head-close.inc' %]
4
</head>
5
<body id="cat_normarc_leader" class="cat" style="padding:1em;">
6
<form name="f_pop" onsubmit="report()">
7
<input type="hidden" name="plugin_name" value="normarc_leader.pl" />
8
<h3>000 - Postens hode</h3>
9
<table>
10
	<tr>
11
		<td><span class="label">00-04 Systemgenerert informasjon</span></td>
12
		<td>(autofylt)</td>
13
	</tr>
14
	<tr>
15
		<td><label for="f5">05 Postens status</label></td>
16
		<td>
17
            <select name="f5" id="f5">
18
			
19
			[% IF ( f5c ) %]
20
				<option value="c" selected="selected">c Rettet post</option>
21
			[% ELSE %]
22
				<option value="c">c Rettet post</option>
23
			[% END %]
24
25
			[% IF ( f5d ) %]
26
				<option value="d" selected="selected">d Slettet post</option>
27
			[% ELSE %]
28
				<option value="d">d Slettet post</option>
29
			[% END %]
30
31
			[% IF ( f5n ) %]
32
				<option value="n" selected="selected">n Ny post</option>
33
			[% ELSE %]
34
				<option value="n">n Ny post</option>
35
			[% END %]
36
			
37
			[% IF ( f5p ) %]
38
				<option value="p" selected="selected">p Oppgradert post</option>
39
			[% ELSE %]
40
				<option value="p">p Oppgradert post</option>
41
			[% END %]
42
43
			</select>
44
		</td>
45
	</tr>
46
	<tr>
47
		<td><label for="f6">06 Materialtype</label></td>
48
		<td>
49
            <select name="f6" id="f6">
50
			
51
			[% IF ( f6a ) %]
52
				<option value="a" selected="selected">a Tekstlig materiale</option>
53
			[% ELSE %]
54
				<option value="a">a Tekstlig materiale</option>
55
			[% END %]
56
			[% IF ( f6b ) %]
57
				<option value="b" selected="selected">b Manuskripter (kap.4)</option>
58
			[% ELSE %]
59
				<option value="b">b Manuskripter (kap.4)</option>
60
			[% END %]
61
			[% IF ( f6c ) %]
62
				<option value="c" selected="selected">c Musikktrykk (kap.5)</option>
63
			[% ELSE %]
64
				<option value="c">c Musikktrykk (kap.5)</option>
65
			[% END %]
66
			[% IF ( f6d ) %]
67
				<option value="d" selected="selected">d Musikkmanuskripter (kap.5)</option>
68
			[% ELSE %]
69
				<option value="d">d Musikkmanuskripter (kap.5)</option>
70
			[% END %]
71
			[% IF ( f6e ) %]
72
				<option value="e" selected="selected">e Kartografisk materiale (kap.3)</option>
73
			[% ELSE %]
74
				<option value="e">e Kartografisk materiale (kap.3)</option>
75
			[% END %]
76
			[% IF ( f6f ) %]
77
				<option value="f" selected="selected">f Kartmanuskripter (kap.3)</option>
78
			[% ELSE %]
79
				<option value="f">f Kartmanuskripter (kap.3)</option>
80
			[% END %]
81
			[% IF ( f6g ) %]
82
				<option value="g" selected="selected">g Filmer og videoopptak (kap.7)</option>
83
			[% ELSE %]
84
				<option value="g">g Filmer og videoopptak (kap.7)</option>
85
			[% END %]
86
			[% IF ( f6i ) %]
87
				<option value="i" selected="selected">i Lydopptak (ikke musikk) (kap.6)</option>
88
			[% ELSE %]
89
				<option value="i">i Lydopptak (ikke musikk) (kap.6)</option>
90
			[% END %]
91
			[% IF ( f6j ) %]
92
				<option value="j" selected="selected">j Lydopptak av musikkverk (kap.6)</option>
93
			[% ELSE %]
94
				<option value="j">j Lydopptak av musikkverk (kap.6)</option>
95
			[% END %]
96
			[% IF ( f6k ) %]
97
				<option value="k" selected="selected">k Grafisk materiale (kap.8)</option>
98
			[% ELSE %]
99
				<option value="k">k Grafisk materiale (kap.8)</option>
100
			[% END %]
101
			[% IF ( f6m ) %]
102
				<option value="m" selected="selected">m Maskinlesbare filer (kap.9)</option>
103
			[% ELSE %]
104
				<option value="m">m Maskinlesbare filer (kap.9)</option>
105
			[% END %]
106
			[% IF ( f6o ) %]
107
				<option value="o" selected="selected">o Kombidokumenter</option>
108
			[% ELSE %]
109
				<option value="o">o Kombidokumenter</option>
110
			[% END %]
111
			[% IF ( f6r ) %]
112
				<option value="r" selected="selected">r Tre-dimensjonale gjenstander (kap.10)</option>
113
			[% ELSE %]
114
				<option value="r">r Tre-dimensjonale gjenstander (kap.10)</option>
115
			[% END %]
116
117
			</select>
118
		</td>
119
	</tr>
120
	<tr>
121
		<td><label for="f7">07 Bibliografisk kategori</label></td>
122
		<td>
123
            <select name="f7" id="f7">
124
			
125
				[% IF ( f7a ) %]
126
					<option value="a" selected="selected">a Analytt til ikke-periodisk dokument</option>
127
				[% ELSE %]
128
					<option value="a">a Analytt til ikke-periodisk dokument</option>
129
				[% END %]
130
				[% IF ( f7b ) %]
131
					<option value="b" selected="selected">b Serieanalytt</option>
132
				[% ELSE %]
133
					<option value="b">b Serieanalytt</option>
134
				[% END %]				
135
				[% IF ( f7c ) %]
136
					<option value="c" selected="selected">c Samling</option>
137
				[% ELSE %]
138
					<option value="c">c Samling</option>
139
				[% END %]				
140
				[% IF ( f7m ) %]
141
					<option value="m" selected="selected">m Monografi</option>
142
				[% ELSE %]
143
					<option value="m">m Monografi</option>
144
				[% END %]				
145
				[% IF ( f7p ) %]
146
					<option value="p" selected="selected">p Analytt til periodikum</option>
147
				[% ELSE %]
148
					<option value="p">p Analytt til periodikum</option>
149
				[% END %]				
150
				[% IF ( f7s ) %]
151
					<option value="s" selected="selected">s Periodikum </option>
152
				[% ELSE %]
153
					<option value="s">s Periodikum </option>
154
				[% END %]				
155
156
			</select>
157
		</td>
158
	</tr>
159
	<tr>
160
		<td>08-16 Systemgenerert informasjon</td>
161
		<td>(autofylt)</td>
162
    </tr>
163
    <tr>
164
		<td><label for="f17">17 Beskrivelsesnivå</label></td>
165
		<td>
166
            <select name="f17" id="f17">
167
				[% IF ( f170 ) %]
168
					<option value="0" selected="selected">0	Fullstendig beskrivelse</option>
169
				[% ELSE %]
170
					<option value="0">0	Fullstendig beskrivelse</option>
171
				[% END %]
172
				[% IF ( f171 ) %]
173
					<option value="1" selected="selected">1 Nivå 2, iflg. KAT.</option>
174
				[% ELSE %]
175
					<option value="1">1 Nivå 2, iflg. KAT.</option>
176
				[% END %]
177
				[% IF ( f172 ) %]
178
					<option value="2" selected="selected">2 Nivå 1, iflg. KAT.</option>
179
				[% ELSE %]
180
					<option value="2">2 Nivå 1, iflg. KAT.</option>
181
				[% END %]
182
				[% IF ( f175 ) %]
183
					<option value="5" selected="selected">5 Foreløpig katalogisering.</option>
184
				[% ELSE %]
185
					<option value="5">5 Foreløpig katalogisering.</option>
186
				[% END %]
187
188
			</select>
189
		</td>
190
	</tr>
191
192
	<tr>
193
		<td>18-23 Systemgenerert informasjon</td>
194
		<td>(autofylt)</td>
195
	</tr>
196
197
</table>
198
<fieldset class="action"><input type="submit" value="OK" /> <a href="#" class="cancel close">Avbryt</a></fieldset>
199
</form>
200
<script>
201
//<![CDATA[
202
function report() {
203
            var doc   = opener.document; 
204
            var field = doc.getElementById("[% index | html %]");
205
        
206
            field.value = 
207
			'     '+
208
			document.f_pop.f5.value+
209
			document.f_pop.f6.value+
210
			document.f_pop.f7.value+
211
			' '+ // document.f_pop.f8.value+
212
			'a'+ // MARC21 UNICODE flag - must be 'a' for Koha
213
			'22     '+
214
			document.f_pop.f17.value+
215
			' '+ // document.f_pop.f18.value+
216
			' '+ // document.f_pop.f19.value+
217
			'4500';
218
		self.close();
219
		return false;
220
	}
221
	//]]>
222
</script>
223
[% INCLUDE 'popup-bottom.inc' %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/xslt/NORMARCslim2OAIDC.xsl (-203 lines)
Lines 1-203 Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
2
3
<!DOCTYPE stylesheet>
4
5
<xsl:stylesheet version="1.0" xmlns:marc="http://www.loc.gov/MARC21/slim" xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" exclude-result-prefixes="marc">
6
	<xsl:import href="MARC21slimUtils.xsl"/>
7
    <xsl:output method="xml" indent="yes" encoding="UTF-8"/>
8
	<!--Added ISBN and deleted attributes 6/04 jer-->
9
	<xsl:template match="/">
10
		<xsl:if test="marc:collection">
11
			<oai_dc:dcCollection xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd">
12
				<xsl:for-each select="marc:collection">
13
					<xsl:for-each select="marc:record">
14
						<oai_dc:dc>
15
							<xsl:apply-templates select="."/>
16
						</oai_dc:dc>
17
					</xsl:for-each>
18
				</xsl:for-each>
19
			</oai_dc:dcCollection>
20
		</xsl:if>
21
		<xsl:if test="marc:record">
22
          <oai_dc:dc
23
            xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/"
24
            xmlns:dc="http://purl.org/dc/elements/1.1/"
25
            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
26
            xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd">
27
				<xsl:apply-templates/>
28
			</oai_dc:dc>
29
		</xsl:if>
30
	</xsl:template>
31
	<xsl:template match="marc:record">
32
		<xsl:variable name="leader" select="marc:leader"/>
33
		<xsl:variable name="leader6" select="substring($leader,7,1)"/>
34
		<xsl:variable name="leader7" select="substring($leader,8,1)"/>
35
		<xsl:variable name="controlField008" select="marc:controlfield[@tag=008]"/>
36
		<xsl:for-each select="marc:datafield[@tag=245]">
37
			<dc:title>
38
				<xsl:call-template name="subfieldSelect">
39
					<xsl:with-param name="codes">abfghk</xsl:with-param>
40
				</xsl:call-template>
41
			</dc:title>
42
		</xsl:for-each>
43
		<xsl:for-each select="marc:datafield[@tag=100]|marc:datafield[@tag=110]|marc:datafield[@tag=111]|marc:datafield[@tag=700]|marc:datafield[@tag=710]|marc:datafield[@tag=711]|marc:datafield[@tag=720]">
44
			<dc:creator>
45
				<xsl:value-of select="."/>
46
			</dc:creator>
47
		</xsl:for-each>
48
		<dc:type>
49
			<xsl:if test="$leader7='c'">
50
				<!--Remove attribute 6/04 jer-->
51
				<!--<xsl:attribute name="collection">yes</xsl:attribute>-->
52
				<xsl:text>collection</xsl:text>
53
			</xsl:if>
54
			<xsl:if test="$leader6='d' or $leader6='f' or $leader6='p' or $leader6='t'">
55
				<!--Remove attribute 6/04 jer-->
56
				<!--<xsl:attribute name="manuscript">yes</xsl:attribute>-->
57
				<xsl:text>manuscript</xsl:text>
58
			</xsl:if>
59
			<xsl:choose>
60
				<xsl:when test="$leader6='a' or $leader6='t'">text</xsl:when>
61
				<xsl:when test="$leader6='e' or $leader6='f'">cartographic</xsl:when>
62
				<xsl:when test="$leader6='c' or $leader6='d'">notated music</xsl:when>
63
				<xsl:when test="$leader6='i' or $leader6='j'">sound recording</xsl:when>
64
				<xsl:when test="$leader6='k'">still image</xsl:when>
65
				<xsl:when test="$leader6='g'">moving image</xsl:when>
66
				<xsl:when test="$leader6='r'">three dimensional object</xsl:when>
67
				<xsl:when test="$leader6='m'">software, multimedia</xsl:when>
68
				<xsl:when test="$leader6='p'">mixed material</xsl:when>
69
			</xsl:choose>
70
		</dc:type>
71
		<xsl:for-each select="marc:datafield[@tag=655]">
72
			<dc:type>
73
				<xsl:value-of select="."/>
74
			</dc:type>
75
		</xsl:for-each>
76
		<xsl:for-each select="marc:datafield[@tag=260]">
77
			<dc:publisher>
78
				<xsl:call-template name="subfieldSelect">
79
					<xsl:with-param name="codes">ab</xsl:with-param>
80
				</xsl:call-template>
81
			</dc:publisher>
82
		</xsl:for-each>
83
		<xsl:for-each select="marc:datafield[@tag=260]/marc:subfield[@code='c']">
84
			<dc:date>
85
				<xsl:value-of select="."/>
86
			</dc:date>
87
		</xsl:for-each>
88
		<dc:language>
89
			<xsl:value-of select="substring($controlField008,36,3)"/>
90
		</dc:language>
91
		<xsl:for-each select="marc:datafield[@tag=856]/marc:subfield[@code='q']">
92
			<dc:format>
93
				<xsl:value-of select="."/>
94
			</dc:format>
95
		</xsl:for-each>
96
		<xsl:for-each select="marc:datafield[@tag=520]">
97
			<dc:description>
98
				<xsl:value-of select="marc:subfield[@code='a']"/>
99
			</dc:description>
100
		</xsl:for-each>
101
		<xsl:for-each select="marc:datafield[@tag=521]">
102
			<dc:description>
103
				<xsl:value-of select="marc:subfield[@code='a']"/>
104
			</dc:description>
105
		</xsl:for-each>
106
		<xsl:for-each select="marc:datafield[500&lt;@tag][@tag&lt;=599][not(@tag=506 or @tag=530 or @tag=540 or @tag=546)]">
107
			<dc:description>
108
				<xsl:value-of select="marc:subfield[@code='a']"/>
109
			</dc:description>
110
		</xsl:for-each>
111
		<xsl:for-each select="marc:datafield[@tag=600]">
112
			<dc:subject>
113
				<xsl:call-template name="subfieldSelect">
114
					<xsl:with-param name="codes">abcdq</xsl:with-param>
115
				</xsl:call-template>
116
			</dc:subject>
117
		</xsl:for-each>
118
		<xsl:for-each select="marc:datafield[@tag=610]">
119
			<dc:subject>
120
				<xsl:call-template name="subfieldSelect">
121
					<xsl:with-param name="codes">abcdq</xsl:with-param>
122
				</xsl:call-template>
123
			</dc:subject>
124
		</xsl:for-each>
125
		<xsl:for-each select="marc:datafield[@tag=611]">
126
			<dc:subject>
127
				<xsl:call-template name="subfieldSelect">
128
					<xsl:with-param name="codes">abcdq</xsl:with-param>
129
				</xsl:call-template>
130
			</dc:subject>
131
		</xsl:for-each>
132
		<xsl:for-each select="marc:datafield[@tag=630]">
133
			<dc:subject>
134
				<xsl:call-template name="subfieldSelect">
135
					<xsl:with-param name="codes">abcdq</xsl:with-param>
136
				</xsl:call-template>
137
			</dc:subject>
138
		</xsl:for-each>
139
		<xsl:for-each select="marc:datafield[@tag=650]">
140
			<dc:subject>
141
				<xsl:call-template name="subfieldSelect">
142
					<xsl:with-param name="codes">abcdq</xsl:with-param>
143
				</xsl:call-template>
144
			</dc:subject>
145
		</xsl:for-each>
146
		<xsl:for-each select="marc:datafield[@tag=653]">
147
			<dc:subject>
148
				<xsl:call-template name="subfieldSelect">
149
					<xsl:with-param name="codes">abcdq</xsl:with-param>
150
				</xsl:call-template>
151
			</dc:subject>
152
		</xsl:for-each>
153
		<xsl:for-each select="marc:datafield[@tag=752]">
154
			<dc:coverage>
155
				<xsl:call-template name="subfieldSelect">
156
					<xsl:with-param name="codes">abcd</xsl:with-param>
157
				</xsl:call-template>
158
			</dc:coverage>
159
		</xsl:for-each>
160
		<xsl:for-each select="marc:datafield[@tag=530]">
161
			<dc:relation type="original">
162
				<xsl:call-template name="subfieldSelect">
163
					<xsl:with-param name="codes">abcdu</xsl:with-param>
164
				</xsl:call-template>
165
			</dc:relation>
166
		</xsl:for-each>
167
		<xsl:for-each select="marc:datafield[@tag=760]|marc:datafield[@tag=762]|marc:datafield[@tag=765]|marc:datafield[@tag=767]|marc:datafield[@tag=770]|marc:datafield[@tag=772]|marc:datafield[@tag=773]|marc:datafield[@tag=774]|marc:datafield[@tag=775]|marc:datafield[@tag=776]|marc:datafield[@tag=777]|marc:datafield[@tag=780]|marc:datafield[@tag=785]|marc:datafield[@tag=786]|marc:datafield[@tag=787]">
168
			<dc:relation>
169
				<xsl:call-template name="subfieldSelect">
170
					<xsl:with-param name="codes">ot</xsl:with-param>
171
				</xsl:call-template>
172
			</dc:relation>
173
		</xsl:for-each>
174
		<xsl:for-each select="marc:datafield[@tag=856]">
175
			<dc:identifier>
176
				<xsl:value-of select="marc:subfield[@code='u']"/>
177
			</dc:identifier>
178
		</xsl:for-each>
179
		<xsl:for-each select="marc:datafield[@tag=020]">
180
			<dc:identifier>
181
				<xsl:text>URN:ISBN:</xsl:text>
182
				<xsl:value-of select="marc:subfield[@code='a']"/>
183
			</dc:identifier>
184
		</xsl:for-each>
185
		<xsl:for-each select="marc:datafield[@tag=506]">
186
			<dc:rights>
187
				<xsl:value-of select="marc:subfield[@code='a']"/>
188
			</dc:rights>
189
		</xsl:for-each>
190
		<xsl:for-each select="marc:datafield[@tag=540]">
191
			<dc:rights>
192
				<xsl:value-of select="marc:subfield[@code='a']"/>
193
			</dc:rights>
194
		</xsl:for-each>
195
		<!--</oai_dc:dc>-->
196
	</xsl:template>
197
</xsl:stylesheet>
198
199
<!-- Stylus Studio meta-information - (c)1998-2003 Copyright Sonic Software Corporation. All rights reserved.
200
<metaInformation>
201
<scenarios/><MapperInfo srcSchemaPath="" srcSchemaRoot="" srcSchemaPathIsRelative="yes" srcSchemaInterpretAsXML="no" destSchemaPath="" destSchemaRoot="" destSchemaPathIsRelative="yes" destSchemaInterpretAsXML="no"/>
202
</metaInformation>
203
-->
(-)a/koha-tmpl/intranet-tmpl/prog/en/xslt/NORMARCslim2intranetDetail.xsl (-656 lines)
Lines 1-656 Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!-- $Id: MARC21slim2DC.xsl,v 1.1 2003/01/06 08:20:27 adam Exp $ -->
3
4
<!DOCTYPE stylesheet>
5
6
<xsl:stylesheet version="1.0"
7
  xmlns:marc="http://www.loc.gov/MARC21/slim"
8
  xmlns:items="http://www.koha-community.org/items"
9
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
10
  xmlns:str="http://exslt.org/strings"
11
  exclude-result-prefixes="marc items str">
12
    <xsl:import href="NORMARCslimUtils.xsl"/>
13
    <xsl:output method = "html" indent="yes" omit-xml-declaration = "yes" encoding="UTF-8"/>
14
    <xsl:template match="/">
15
            <xsl:apply-templates/>
16
    </xsl:template>
17
18
    <xsl:template match="marc:record">
19
20
        <!-- Sysprefs -->
21
        <xsl:variable name="UseControlNumber" select="marc:sysprefs/marc:syspref[@name='UseControlNumber']"/>
22
        <xsl:variable name="OPACBaseURL" select="marc:sysprefs/marc:syspref[@name='OPACBaseURL']"/>
23
        <xsl:variable name="SubjectModifier"><xsl:if test="marc:sysprefs/marc:syspref[@name='TraceCompleteSubfields']='1'">,complete-subfield</xsl:if></xsl:variable>
24
        <xsl:variable name="TraceSubjectSubdivisions" select="marc:sysprefs/marc:syspref[@name='TraceSubjectSubdivisions']"/>
25
        <xsl:variable name="OpacSuppression" select="marc:sysprefs/marc:syspref[@name='OpacSuppression']"/>
26
        <xsl:variable name="TracingQuotesLeft">
27
          <xsl:choose>
28
            <xsl:when test="marc:sysprefs/marc:syspref[@name='UseICUStyleQuotes']='1'">{</xsl:when>
29
            <xsl:otherwise>"</xsl:otherwise>
30
          </xsl:choose>
31
        </xsl:variable>
32
        <xsl:variable name="TracingQuotesRight">
33
          <xsl:choose>
34
            <xsl:when test="marc:sysprefs/marc:syspref[@name='UseICUStyleQuotes']='1'">}</xsl:when>
35
            <xsl:otherwise>"</xsl:otherwise>
36
          </xsl:choose>
37
        </xsl:variable>
38
        <xsl:variable name="DisplayOPACiconsXSLT" select="marc:sysprefs/marc:syspref[@name='DisplayOPACiconsXSLT']"/>
39
40
        <xsl:variable name="leader" select="marc:leader"/>
41
        <xsl:variable name="leader6" select="substring($leader,7,1)"/>
42
        <xsl:variable name="leader7" select="substring($leader,8,1)"/>
43
        <xsl:variable name="controlField008" select="marc:controlfield[@tag=008]"/>
44
        <xsl:variable name="field019b" select="marc:datafield[@tag=019]/marc:subfield[@code='b']"/>
45
        <xsl:variable name="biblionumber" select="marc:datafield[@tag=999]/marc:subfield[@code='c']"/>
46
        <xsl:variable name="typeOf008">
47
            <!-- The logic here should be exactly the same for NORMARCslim2intranetDetail.xsl, NORMARCslim2intranetResults.xsl, NORMARCslim2OPACDetail.xsl and NORMARCslim2OPACResults.xsl -->
48
            <xsl:choose>
49
                <xsl:when test="$field019b='b' or $field019b='k' or $field019b='l' or $leader6='b'">Mon</xsl:when>
50
                <xsl:when test="$field019b='e' or contains($field019b,'ec') or contains($field019b,'ed') or contains($field019b,'ee') or contains($field019b,'ef') or $leader6='g'">FV</xsl:when>
51
                <xsl:when test="$field019b='c' or $field019b='d' or contains($field019b,'da') or contains($field019b,'db') or contains($field019b,'dc') or contains($field019b,'dd') or contains($field019b,'dg') or contains($field019b,'dh') or contains($field019b,'di') or contains($field019b,'dj') or contains($field019b,'dk') or $leader6='c' or $leader6='d' or $leader6='i' or $leader6='j'">Mus</xsl:when>
52
                <xsl:when test="$field019b='a' or contains($field019b,'ab') or contains($field019b,'aj') or $leader6='e' or $leader6='f'">Kar</xsl:when>
53
                <xsl:when test="$field019b='f' or $field019b='i' or contains($field019b,'ib') or contains($field019b,'ic') or contains($field019b,'fd') or contains($field019b,'ff') or contains($field019b,'fi') or $leader6='k'">gra</xsl:when>
54
                <xsl:when test="$field019b='g' or contains($field019b,'gb') or contains($field019b,'gd') or contains($field019b,'ge') or $leader6='m'">Fil</xsl:when>
55
                <xsl:when test="$leader6='o'">kom</xsl:when>
56
                <xsl:when test="$field019b='h' or $leader6='r'">trd</xsl:when>
57
                <xsl:when test="$field019b='j' or $leader6='a'">
58
                    <xsl:choose>
59
                        <xsl:when test="$leader7='a' or $leader7='c' or $leader7='m' or $leader7='p'">Mon</xsl:when>
60
                        <xsl:when test="$field019b='j' or $leader7='b' or $leader7='s'">Per</xsl:when>
61
                    </xsl:choose>
62
                </xsl:when>
63
            </xsl:choose>
64
        </xsl:variable>
65
66
        <!-- Indicate if record is suppressed in OPAC -->
67
        <xsl:if test="$OpacSuppression = 1">
68
            <xsl:if test="marc:datafield[@tag=942][marc:subfield[@code='n'] = '1']">
69
                <span class="results_summary suppressed_opac">Suppressed in OPAC</span>
70
            </xsl:if>
71
        </xsl:if>
72
73
        <!-- Tittel og ansvarsopplysninger -->
74
        <xsl:if test="marc:datafield[@tag=245]">
75
        <h1>
76
            <xsl:for-each select="marc:datafield[@tag=245]">
77
                    <xsl:call-template name="subfieldSelect">
78
                        <xsl:with-param name="codes">a</xsl:with-param>
79
                    </xsl:call-template>
80
                    <xsl:if test="marc:subfield[@code='h']">
81
                        <xsl:text> </xsl:text>
82
                        (<xsl:call-template name="subfieldSelect">
83
                            <xsl:with-param name="codes">h</xsl:with-param>
84
                        </xsl:call-template>) 
85
                    </xsl:if>
86
                    <xsl:if test="marc:subfield[@code='b']">
87
                        <xsl:text> : </xsl:text>
88
                        <xsl:call-template name="subfieldSelect">
89
                            <xsl:with-param name="codes">b</xsl:with-param>
90
                        </xsl:call-template>
91
                    </xsl:if>
92
                    <xsl:text> </xsl:text>
93
                    <xsl:call-template name="subfieldSelect">
94
                        <xsl:with-param name="codes">np</xsl:with-param>
95
                    </xsl:call-template>
96
            </xsl:for-each>
97
        </h1>
98
        </xsl:if>
99
100
        <!-- Author Statement -->
101
		<!-- 245$9 is Koha authority number --> 
102
        <xsl:choose>
103
        <xsl:when test="marc:datafield[@tag=100] or marc:datafield[@tag=110] or marc:datafield[@tag=111] or marc:datafield[@tag=700] or marc:datafield[@tag=710] or marc:datafield[@tag=711]">
104
        <h5 class="author">av
105
        <xsl:for-each select="marc:datafield[@tag=100 or @tag=700]">
106
        <a>
107
        <xsl:choose>
108
            <xsl:when test="marc:subfield[@code=9]">
109
                <xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=an:<xsl:value-of select="str:encode-uri(marc:subfield[@code=9], true())"/></xsl:attribute>
110
            </xsl:when>
111
            <xsl:otherwise>
112
            <xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=au:<xsl:value-of select="str:encode-uri(marc:subfield[@code='a'], true())"/></xsl:attribute>
113
            </xsl:otherwise>
114
        </xsl:choose>
115
        <xsl:call-template name="nameABCDQ"/></a>
116
        <xsl:choose>
117
        <xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
118
        </xsl:for-each>
119
120
        <xsl:for-each select="marc:datafield[@tag=110 or @tag=710]">
121
        <a>
122
        <xsl:choose>
123
            <xsl:when test="marc:subfield[@code=9]">
124
                <xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=an:<xsl:value-of select="str:encode-uri(marc:subfield[@code=9], true())"/></xsl:attribute>
125
            </xsl:when>
126
            <xsl:otherwise>
127
            <xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=au:<xsl:value-of select="str:encode-uri(marc:subfield[@code='a'], true())"/></xsl:attribute>
128
            </xsl:otherwise>
129
        </xsl:choose>
130
        <xsl:call-template name="nameABCDN"/></a>
131
        <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
132
        </xsl:for-each>
133
134
        <xsl:for-each select="marc:datafield[@tag=111 or @tag=711]">
135
        <a>
136
        <xsl:choose>
137
            <xsl:when test="marc:subfield[@code=9]">
138
                <xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=an:<xsl:value-of select="str:encode-uri(marc:subfield[@code=9], true())"/></xsl:attribute>
139
            </xsl:when>
140
            <xsl:otherwise>
141
            <xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=au:<xsl:value-of select="str:encode-uri(marc:subfield[@code='a'], true())"/></xsl:attribute>
142
            </xsl:otherwise>
143
        </xsl:choose>
144
        <xsl:call-template name="nameACDEQ"/></a>
145
        <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
146
147
        </xsl:for-each>
148
        </h5>
149
        </xsl:when>
150
        </xsl:choose>
151
152
153
        <xsl:if test="$typeOf008!=''">
154
        <span class="results_summary">
155
            <span class="label">Materialtype: </span>
156
            <xsl:choose>
157
                <xsl:when test="$typeOf008='Mon'"><img src="/intranet-tmpl/prog/img/famfamfam/BK.png" alt="Bok" title="Bok"/> Bok</xsl:when>
158
                <xsl:when test="$typeOf008='Per'"><img src="/intranet-tmpl/prog/img/famfamfam/AR.png" alt="Periodika" title="Periodika"/> Periodika</xsl:when>
159
                <xsl:when test="$typeOf008='Fil'"><img src="/intranet-tmpl/prog/img/famfamfam/CF.png" alt="Fil" title="Fil"/> Fil</xsl:when>
160
                <xsl:when test="$typeOf008='Kar'"><img src="/intranet-tmpl/prog/img/famfamfam/MP.png" alt="Kart" title="Kart"/> Kart</xsl:when>
161
                <xsl:when test="$typeOf008='FV'"><img  src="/intranet-tmpl/prog/img/famfamfam/VM.png" alt="Film og video" title="Film og video"/> Film og video</xsl:when>
162
                <xsl:when test="$typeOf008='Mus'"><img src="/intranet-tmpl/prog/img/famfamfam/PR.png" alt="Musikktrykk og lydopptak" title="Musikktrykk og lydopptak"/> Musikk</xsl:when>
163
                <xsl:when test="$typeOf008='gra'"><img src="/intranet-tmpl/prog/img/famfamfam/GR.png" alt="Grafisk materiale" title="Grafisk materiale"/> Grafisk materiale</xsl:when>
164
                <xsl:when test="$typeOf008='kom'"><img src="/intranet-tmpl/prog/img/famfamfam/MX.png" alt="Kombidokumenter" title="Kombidokumenter"/> Kombidokumenter</xsl:when>
165
                <xsl:when test="$typeOf008='trd'"><img src="/intranet-tmpl/prog/img/famfamfam/TD.png" alt="Tre-dimensjonale gjenstander" title="Tre-dimensjonale gjenstander"/> Tre-dimensjonale gjenstander</xsl:when>
166
            </xsl:choose>
167
        </span>
168
        </xsl:if>
169
170
        <!--Series -->
171
        <xsl:if test="marc:datafield[@tag=440 or @tag=490]">
172
	        <span class="results_summary"><span class="label">Series: </span>
173
	        <xsl:for-each select="marc:datafield[@tag=440]">
174
	            <a>
175
                    <xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=se:<xsl:value-of select="str:encode-uri(marc:subfield[@code='a'], true())"/></xsl:attribute>
176
	                <xsl:call-template name="chopPunctuation">
177
	                            <xsl:with-param name="chopString">
178
	                                <xsl:call-template name="subfieldSelect">
179
	                                    <xsl:with-param name="codes">av</xsl:with-param>
180
	                                </xsl:call-template>
181
	                            </xsl:with-param>
182
	                        </xsl:call-template>
183
				</a>
184
	                    <xsl:text> </xsl:text><xsl:call-template name="part"/>
185
	            <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
186
	        </xsl:for-each>
187
	
188
	        <xsl:for-each select="marc:datafield[@tag=490][@ind1=0]">
189
	            <a>
190
                    <xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=se:<xsl:value-of select="str:encode-uri(marc:subfield[@code='a'], true())"/></xsl:attribute>
191
	                        <xsl:call-template name="chopPunctuation">
192
	                            <xsl:with-param name="chopString">
193
	                                <xsl:call-template name="subfieldSelect">
194
	                                    <xsl:with-param name="codes">av</xsl:with-param>
195
	                                </xsl:call-template>
196
	                            </xsl:with-param>
197
	                        </xsl:call-template>
198
	            </a>
199
	                    <xsl:call-template name="part"/>
200
	        <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
201
	        </xsl:for-each>
202
	        </span>
203
        </xsl:if>
204
205
        <!-- Analytics -->
206
        <xsl:if test="$leader7='s' or $leader7='c'">
207
        <span class="results_summary analytics"><span class="label">Analytics: </span>
208
            <a>
209
            <xsl:choose>
210
            <xsl:when test="$UseControlNumber = '1' and marc:controlfield[@tag=001]">
211
                <xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=rcn:<xsl:value-of select="str:encode-uri(marc:controlfield[@tag=001], true())"/>+and+(bib-level:a+or+bib-level:b)</xsl:attribute>
212
            </xsl:when>
213
            <xsl:otherwise>
214
                <xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=Host-item:<xsl:value-of select="str:encode-uri(translate(marc:datafield[@tag=245]/marc:subfield[@code='a'], '/', ''), true())"/></xsl:attribute>
215
            </xsl:otherwise>
216
            </xsl:choose>
217
            <xsl:text>Show analytics</xsl:text>
218
            </a>
219
        </span>
220
        </xsl:if>
221
222
        <!-- 773 - Links from child to parent -->
223
        <xsl:if test="marc:datafield[@tag=773]">
224
        <xsl:for-each select="marc:datafield[@tag=773]">
225
        <xsl:if test="@ind1=0">
226
        <span class="results_summary in"><span class="label">
227
        <xsl:choose>
228
        <xsl:when test="@ind2=' '">
229
            In:
230
        </xsl:when>
231
        <xsl:when test="@ind2=8">
232
            <xsl:if test="marc:subfield[@code='i']">
233
                <xsl:value-of select="marc:subfield[@code='i']"/>
234
            </xsl:if>
235
        </xsl:when>
236
        </xsl:choose>
237
        </span>
238
                <xsl:variable name="f773">
239
                    <xsl:call-template name="chopPunctuation"><xsl:with-param name="chopString"><xsl:call-template name="subfieldSelect">
240
                        <xsl:with-param name="codes">a_t</xsl:with-param>
241
                    </xsl:call-template></xsl:with-param></xsl:call-template>
242
                </xsl:variable>
243
            <xsl:choose>
244
                <xsl:when test="$UseControlNumber = '1' and marc:subfield[@code='w']">
245
                    <a><xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=Control-number:<xsl:call-template name="extractControlNumber"><xsl:with-param name="subfieldW" select="marc:subfield[@code='w']"/></xsl:call-template></xsl:attribute>
246
                        <xsl:value-of select="translate($f773, '()', '')"/>
247
                    </a>
248
                    <xsl:if test="marc:subfield[@code='g']"><xsl:text> </xsl:text><xsl:value-of select="marc:subfield[@code='g']"/></xsl:if>
249
                </xsl:when>
250
                <xsl:when test="marc:subfield[@code='0']">
251
                    <a><xsl:attribute name="href">/cgi-bin/koha/catalogue/detail.pl?biblionumber=<xsl:value-of select="str:encode-uri(marc:subfield[@code='0'], true())"/></xsl:attribute>
252
                        <xsl:value-of select="$f773"/>
253
                    </a>
254
                </xsl:when>
255
                <xsl:otherwise>
256
                    <a><xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=ti,phr:<xsl:value-of select="str:encode-uri(translate($f773, '()', ''), true())"/></xsl:attribute>
257
                        <xsl:value-of select="$f773"/>
258
                    </a>
259
                    <xsl:if test="marc:subfield[@code='g']"><xsl:text> </xsl:text><xsl:value-of select="marc:subfield[@code='g']"/></xsl:if>
260
                </xsl:otherwise>
261
            </xsl:choose>
262
        </span>
263
        <xsl:if test="marc:subfield[@code='n']">
264
            <span class="results_summary"><xsl:value-of select="marc:subfield[@code='n']"/></span>
265
        </xsl:if>
266
        </xsl:if>
267
        </xsl:for-each>
268
        </xsl:if>
269
270
        <!-- Publisher Statement -->
271
        
272
        <xsl:if test="marc:datafield[@tag=260]">
273
        <span class="results_summary"><span class="label">Utgiver: </span>
274
            <xsl:for-each select="marc:datafield[@tag=260]">
275
                <xsl:call-template name="chopPunctuation">
276
                  <xsl:with-param name="chopString">
277
                    <xsl:call-template name="subfieldSelect">
278
                        <xsl:with-param name="codes">bcg</xsl:with-param>
279
                    </xsl:call-template>
280
                   </xsl:with-param>
281
               </xsl:call-template>
282
                    <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
283
            </xsl:for-each>
284
        </span> 
285
        </xsl:if>
286
287
        <!-- Edition Statement -->
288
        
289
        <xsl:if test="marc:datafield[@tag=250]">
290
        <span class="results_summary"><span class="label">Utgave: </span>
291
            <xsl:for-each select="marc:datafield[@tag=250]">
292
                <xsl:call-template name="chopPunctuation">
293
                  <xsl:with-param name="chopString">
294
                    <xsl:call-template name="subfieldSelect">
295
                        <xsl:with-param name="codes">ab</xsl:with-param>
296
                    </xsl:call-template>
297
                   </xsl:with-param>
298
               </xsl:call-template>
299
                    <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
300
            </xsl:for-each>
301
        </span>
302
        </xsl:if>
303
304
        <!-- Description -->
305
        
306
        <xsl:if test="marc:datafield[@tag=300]">
307
        <span class="results_summary"><span class="label">Beskrivelse: </span>
308
            <xsl:for-each select="marc:datafield[@tag=300]">
309
                <xsl:call-template name="chopPunctuation">
310
                  <xsl:with-param name="chopString">
311
                    <xsl:call-template name="subfieldSelect">
312
                        <xsl:with-param name="codes">abceg</xsl:with-param>
313
                    </xsl:call-template>
314
                   </xsl:with-param>
315
               </xsl:call-template>
316
                    <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
317
            </xsl:for-each>
318
        </span>
319
       </xsl:if>
320
321
       <abbr class="unapi-id" title="koha:biblionumber:{marc:datafield[@tag=999]/marc:subfield[@code='c']}" ><!-- unAPI --></abbr>
322
323
        <!-- Build ISBN -->
324
        <xsl:if test="marc:datafield[@tag=020]/marc:subfield[@code='a']">
325
          <span class="results_summary isbn"><span class="label">ISBN: </span>
326
            <xsl:for-each select="marc:datafield[@tag=020]/marc:subfield[@code='a']">
327
              <span property="isbn">
328
                <xsl:value-of select="."/>
329
                <xsl:choose>
330
                  <xsl:when test="position()=last()">
331
                    <xsl:text>.</xsl:text>
332
                  </xsl:when>
333
                  <xsl:otherwise>
334
                    <xsl:text>; </xsl:text>
335
                  </xsl:otherwise>
336
                </xsl:choose>
337
              </span>
338
            </xsl:for-each>
339
          </span>
340
        </xsl:if>
341
342
        <!-- Build ISSN -->
343
        <xsl:if test="marc:datafield[@tag=022]/marc:subfield[@code='a']">
344
          <span class="results_summary issn"><span class="label">ISSN: </span>
345
            <xsl:for-each select="marc:datafield[@tag=022]/marc:subfield[@code='a']">
346
              <span property="issn">
347
                <xsl:value-of select="."/>
348
                <xsl:choose>
349
                  <xsl:when test="position()=last()">
350
                    <xsl:text>.</xsl:text>
351
                  </xsl:when>
352
                  <xsl:otherwise>
353
                    <xsl:text>; </xsl:text>
354
                  </xsl:otherwise>
355
                </xsl:choose>
356
              </span>
357
            </xsl:for-each>
358
          </span>
359
        </xsl:if>
360
361
        <!-- Other Title  Statement -->
362
363
        <xsl:if test="marc:datafield[@tag=246]">
364
        <span class="results_summary"><span class="label">Parallelltittel: </span>
365
            <xsl:for-each select="marc:datafield[@tag=246]">
366
                <xsl:call-template name="chopPunctuation">
367
                  <xsl:with-param name="chopString">
368
                    <xsl:call-template name="subfieldSelect">
369
                        <xsl:with-param name="codes">abhfgnp</xsl:with-param>
370
                    </xsl:call-template>
371
                   </xsl:with-param>
372
               </xsl:call-template>
373
                    <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
374
            </xsl:for-each>
375
        </span>
376
       </xsl:if>
377
378
        <!-- Uniform Title  Statement -->
379
380
        <xsl:if test="marc:datafield[@tag=130]|marc:datafield[@tag=240]|marc:datafield[@tag=730][@ind2!=2]">
381
        <span class="results_summary"><span class="label">Standardtittel: </span>
382
        <xsl:for-each select="marc:datafield[@tag=130]|marc:datafield[@tag=240]|marc:datafield[@tag=730][@ind2!=2]">
383
            <xsl:variable name="str">
384
                <xsl:for-each select="marc:subfield">
385
                    <xsl:if test="(contains('adfklmor',@code) and (not(../marc:subfield[@code='n' or @code='p']) or (following-sibling::marc:subfield[@code='n' or @code='p'])))">
386
                        <xsl:value-of select="text()"/>
387
                        <xsl:text> </xsl:text>
388
                     </xsl:if>
389
                </xsl:for-each>
390
            </xsl:variable>
391
            <xsl:call-template name="chopPunctuation">
392
                <xsl:with-param name="chopString">
393
                    <xsl:value-of select="substring($str,1,string-length($str)-1)"/>
394
                        
395
                </xsl:with-param>
396
            </xsl:call-template>
397
            <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
398
        </xsl:for-each>
399
        </span>
400
        </xsl:if>
401
402
        <!-- Subjects -->
403
404
        <xsl:if test="marc:datafield[substring(@tag, 1, 1) = '6']">
405
            <span class="results_summary subjects"><span class="label">Emne(r): </span>
406
            <xsl:for-each select="marc:datafield[substring(@tag, 1, 1) = '6']">
407
            <a>
408
            <xsl:choose>
409
            <!-- Will implement this later
410
                <xsl:when test="marc:subfield[@code=9] and $UseAuthoritiesForTracings='1'">
411
                    <xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=an:<xsl:value-of select="str:encode-uri(marc:subfield[@code=9], true())"/></xsl:attribute>
412
                </xsl:when>
413
            -->
414
            <xsl:when test="$TraceSubjectSubdivisions='1'">
415
                <xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=<xsl:call-template name="subfieldSelect">
416
                        <xsl:with-param name="codes">abcdvxyz</xsl:with-param>
417
                        <xsl:with-param name="delimeter"> AND </xsl:with-param>
418
                        <xsl:with-param name="prefix">(su<xsl:value-of select="$SubjectModifier"/>:<xsl:value-of select="$TracingQuotesLeft"/></xsl:with-param>
419
                        <xsl:with-param name="suffix"><xsl:value-of select="$TracingQuotesRight"/>)</xsl:with-param>
420
                        <xsl:with-param name="urlencode">1</xsl:with-param>
421
                    </xsl:call-template>
422
                </xsl:attribute>
423
            </xsl:when>
424
            <xsl:otherwise>
425
                <xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=su<xsl:value-of select="$SubjectModifier"/>:<xsl:value-of select="$TracingQuotesLeft"/><xsl:value-of select="str:encode-uri(marc:subfield[@code='a'], true())"/><xsl:value-of select="$TracingQuotesRight"/></xsl:attribute>
426
            </xsl:otherwise>
427
            </xsl:choose>
428
            <xsl:call-template name="chopPunctuation">
429
                <xsl:with-param name="chopString">
430
                    <xsl:call-template name="subfieldSelect">
431
                        <xsl:with-param name="codes">abcdvxyz</xsl:with-param>
432
                        <xsl:with-param name="subdivCodes">vxyz</xsl:with-param>
433
                        <xsl:with-param name="subdivDelimiter">-- </xsl:with-param>
434
                    </xsl:call-template>
435
                </xsl:with-param>
436
            </xsl:call-template>
437
            </a>
438
            <xsl:choose>
439
            <xsl:when test="position()=last()"></xsl:when>
440
            <xsl:otherwise> | </xsl:otherwise>
441
            </xsl:choose>
442
443
            </xsl:for-each>
444
            </span>
445
        </xsl:if>
446
447
        <xsl:if test="marc:datafield[@tag=856]">
448
        <span class="results_summary"><span class="label">Nettbasert ressurs: </span>
449
        <xsl:for-each select="marc:datafield[@tag=856]">
450
            <a><xsl:attribute name="href"><xsl:value-of select="marc:subfield[@code='u']"/></xsl:attribute>
451
        <xsl:choose>
452
            <xsl:when test="marc:subfield[@code='y' or @code='3' or @code='z']">
453
                    <xsl:call-template name="subfieldSelect">
454
                        <xsl:with-param name="codes">y3z</xsl:with-param>
455
                    </xsl:call-template>
456
            </xsl:when>
457
        <xsl:when test="not(marc:subfield[@code='y']) and not(marc:subfield[@code='3']) and not(marc:subfield[@code='z'])">
458
        Klikk her for tilgang
459
        </xsl:when>
460
        </xsl:choose>
461
        </a>
462
            <xsl:choose>
463
            <xsl:when test="position()=last()"></xsl:when>
464
            <xsl:otherwise> | </xsl:otherwise>
465
            </xsl:choose>  
466
        </xsl:for-each>
467
        </span>
468
        </xsl:if>
469
        
470
        <!-- NORMARC does not define indicators for 505
471
        <xsl:if test="marc:datafield[@tag=505]">
472
        <xsl:for-each select="marc:datafield[@tag=505]">
473
        <span class="results_summary"><span class="label">
474
        <xsl:choose>
475
        <xsl:when test="@ind1=0">
476
            Contents:
477
        </xsl:when>
478
        <xsl:when test="@ind1=1">
479
            Incomplete contents:
480
        </xsl:when>
481
        <xsl:when test="@ind1=1">
482
            Partial contents:
483
        </xsl:when>
484
        </xsl:choose>  
485
        </span>
486
        <xsl:choose>
487
        <xsl:when test="@ind2=0">
488
            <xsl:for-each select="marc:subfield[@code='t']">
489
                <xsl:value-of select="marc:subfield[@code=t]"/> <xsl:value-of select="marc:subfield[@code=r]"/>
490
            </xsl:for-each> 
491
        </xsl:when>
492
        <xsl:otherwise>
493
            <xsl:call-template name="subfieldSelect">
494
                <xsl:with-param name="codes">au</xsl:with-param>
495
            </xsl:call-template>
496
        </xsl:otherwise>
497
        </xsl:choose>
498
        </span>
499
        </xsl:for-each>
500
        </xsl:if>
501
        -->
502
        <xsl:if test="marc:datafield[@tag=505]">
503
	        <xsl:call-template name="subfieldSelect">
504
                <xsl:with-param name="codes">a</xsl:with-param>
505
            </xsl:call-template>
506
		</xsl:if>
507
		
508
        <!-- 780 -->
509
        <xsl:if test="marc:datafield[@tag=780]">
510
        <xsl:for-each select="marc:datafield[@tag=780]">
511
        <span class="results_summary"><span class="label">
512
        <xsl:choose>
513
	        <xsl:when test="@ind2=0">
514
	            Fortsettelse av:
515
	        </xsl:when>
516
	        <xsl:when test="@ind2=1">
517
	            Delvis fortsettelse av:
518
	        </xsl:when>
519
	        <xsl:when test="@ind2=2">
520
	            Avløser:
521
	        </xsl:when>
522
	        <xsl:when test="@ind2=3">
523
	            Avløser delvis:
524
	        </xsl:when>
525
	        <xsl:when test="@ind2=4">
526
	            Sammenslåing av: ... ; og ...
527
	        </xsl:when>
528
	        <xsl:when test="@ind2=5">
529
	            Har tatt opp:
530
	        </xsl:when>
531
	        <xsl:when test="@ind2=6">
532
	            Har delvis tatt opp:
533
	        </xsl:when>
534
	        <xsl:when test="@ind2=7">
535
	            Utskilt fra:
536
	        </xsl:when>
537
        </xsl:choose>
538
        </span>
539
                <xsl:variable name="f780">
540
                    <xsl:call-template name="subfieldSelect">
541
                        <xsl:with-param name="codes">a_t</xsl:with-param>
542
                    </xsl:call-template>
543
                </xsl:variable>
544
             <a><xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=<xsl:value-of select="str:encode-uri(translate($f780, '()', ''), true())"/></xsl:attribute>
545
                <xsl:value-of select="translate($f780, '()', '')"/>
546
            </a>
547
        </span>
548
 
549
        <xsl:choose>
550
        <xsl:when test="@ind1=0">
551
            <span class="results_summary"><xsl:value-of select="marc:subfield[@code='n']"/></span>
552
        </xsl:when>
553
        </xsl:choose>
554
555
        </xsl:for-each>
556
        </xsl:if>
557
558
        <!-- 785 -->
559
        <xsl:if test="marc:datafield[@tag=785]">
560
        <xsl:for-each select="marc:datafield[@tag=785]">
561
        <span class="results_summary"><span class="label">
562
        <xsl:choose>
563
	        <xsl:when test="@ind2=0">
564
	            Fortsettelse i:
565
	        </xsl:when>
566
	        <xsl:when test="@ind2=1">
567
	            Fortsettes delvis i:
568
	        </xsl:when>
569
	        <xsl:when test="@ind2=2">
570
	            Avløst av:
571
	        </xsl:when>
572
	        <xsl:when test="@ind2=3">
573
	            Delvis avløst av:
574
	        </xsl:when>
575
	        <xsl:when test="@ind2=4">
576
	            GÃ¥tt inn i:
577
	        </xsl:when>
578
	        <xsl:when test="@ind2=5">
579
	            Delvis gått inn i:
580
	        </xsl:when>
581
	        <xsl:when test="@ind2=6">
582
	            Fortsettes av: ...; og ...
583
	        </xsl:when>
584
	        <xsl:when test="@ind2=7">
585
	             	Slått sammen med: .., til: ...
586
	        </xsl:when>
587
        </xsl:choose>
588
        </span>
589
                   <xsl:variable name="f785">
590
                    <xsl:call-template name="subfieldSelect">
591
                        <xsl:with-param name="codes">a_t</xsl:with-param>
592
                    </xsl:call-template>
593
                </xsl:variable>
594
595
                <a><xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=<xsl:value-of select="str:encode-uri(translate($f785, '()', ''), true())"/></xsl:attribute>
596
                <xsl:value-of select="translate($f785, '()', '')"/>
597
            </a>
598
599
        </span>
600
        </xsl:for-each>
601
        </xsl:if>
602
603
        <!-- This will only work if the OPACBaseURL syspref is set. -->
604
        <xsl:if test="string-length($OPACBaseURL) > 0">
605
        <p>OPAC View: <a>
606
                      <xsl:attribute name="href"><xsl:value-of select="$OPACBaseURL"/>/cgi-bin/koha/opac-detail.pl?biblionumber=<xsl:value-of select="str:encode-uri($biblionumber, true())"/></xsl:attribute>
607
                      <xsl:attribute name="target">_blank</xsl:attribute>
608
                      Open in new window
609
                      </a></p>
610
         </xsl:if>
611
612
    </xsl:template>
613
614
    <xsl:template name="part">
615
        <xsl:variable name="partNumber">
616
            <xsl:call-template name="specialSubfieldSelect">
617
                <xsl:with-param name="axis">n</xsl:with-param>
618
                <xsl:with-param name="anyCodes">n</xsl:with-param>
619
                <xsl:with-param name="afterCodes">fghkdlmor</xsl:with-param>
620
            </xsl:call-template>
621
        </xsl:variable>
622
        <xsl:variable name="partName">
623
            <xsl:call-template name="specialSubfieldSelect">
624
                <xsl:with-param name="axis">p</xsl:with-param>
625
                <xsl:with-param name="anyCodes">p</xsl:with-param>
626
                <xsl:with-param name="afterCodes">fghkdlmor</xsl:with-param>
627
            </xsl:call-template>
628
        </xsl:variable>
629
        <xsl:if test="string-length(normalize-space($partNumber))">
630
                <xsl:call-template name="chopPunctuation">
631
                    <xsl:with-param name="chopString" select="$partNumber"/>
632
                </xsl:call-template>
633
        </xsl:if>
634
        <xsl:if test="string-length(normalize-space($partName))">
635
                <xsl:call-template name="chopPunctuation">
636
                    <xsl:with-param name="chopString" select="$partName"/>
637
                </xsl:call-template>
638
        </xsl:if>
639
    </xsl:template>
640
641
    <xsl:template name="specialSubfieldSelect">
642
        <xsl:param name="anyCodes"/>
643
        <xsl:param name="axis"/>
644
        <xsl:param name="beforeCodes"/>
645
        <xsl:param name="afterCodes"/>
646
        <xsl:variable name="str">
647
            <xsl:for-each select="marc:subfield">
648
                <xsl:if test="contains($anyCodes, @code)      or (contains($beforeCodes,@code) and following-sibling::marc:subfield[@code=$axis])      or (contains($afterCodes,@code) and preceding-sibling::marc:subfield[@code=$axis])">
649
                    <xsl:value-of select="text()"/>
650
                    <xsl:text> </xsl:text>
651
                </xsl:if>
652
            </xsl:for-each>
653
        </xsl:variable>
654
        <xsl:value-of select="substring($str,1,string-length($str)-1)"/>
655
    </xsl:template>
656
</xsl:stylesheet>
(-)a/koha-tmpl/intranet-tmpl/prog/en/xslt/NORMARCslim2intranetResults.xsl (-852 lines)
Lines 1-852 Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!-- $Id: MARC21slim2DC.xsl,v 1.1 2003/01/06 08:20:27 adam Exp $ -->
3
<!DOCTYPE stylesheet>
4
<xsl:stylesheet version="1.0"
5
  xmlns:marc="http://www.loc.gov/MARC21/slim"
6
  xmlns:items="http://www.koha-community.org/items"
7
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
8
  xmlns:str="http://exslt.org/strings"
9
  exclude-result-prefixes="marc items str">
10
    <xsl:import href="NORMARCslimUtils.xsl"/>
11
    <xsl:output method = "html" indent="yes" omit-xml-declaration = "yes" encoding="UTF-8"/>
12
    <xsl:key name="item-by-status" match="items:item" use="items:status"/>
13
    <xsl:key name="item-by-status-and-branch" match="items:item" use="concat(items:status, ' ', items:homebranch)"/>
14
15
    <xsl:template match="/">
16
            <xsl:apply-templates/>
17
    </xsl:template>
18
    <xsl:template match="marc:record">
19
20
        <xsl:variable name="UseControlNumber" select="marc:sysprefs/marc:syspref[@name='UseControlNumber']"/>
21
        <xsl:variable name="hidelostitems" select="marc:sysprefs/marc:syspref[@name='hidelostitems']"/>
22
        <xsl:variable name="URLLinkText" select="marc:sysprefs/marc:syspref[@name='URLLinkText']"/>
23
        <xsl:variable name="Show856uAsImage" select="marc:sysprefs/marc:syspref[@name='Display856uAsImage']"/>
24
        <xsl:variable name="AlternateHoldingsField" select="substring(marc:sysprefs/marc:syspref[@name='AlternateHoldingsField'], 1, 3)"/>
25
        <xsl:variable name="AlternateHoldingsSubfields" select="substring(marc:sysprefs/marc:syspref[@name='AlternateHoldingsField'], 4)"/>
26
        <xsl:variable name="AlternateHoldingsSeparator" select="marc:sysprefs/marc:syspref[@name='AlternateHoldingsSeparator']"/>
27
        <xsl:variable name="OpacSuppression" select="marc:sysprefs/marc:syspref[@name='OpacSuppression']"/>
28
        <xsl:variable name="IntranetBiblioDefaultView" select="marc:sysprefs/marc:syspref[@name='IntranetBiblioDefaultView']"/>
29
        <xsl:variable name="UseAuthoritiesForTracings" select="marc:sysprefs/marc:syspref[@name='UseAuthoritiesForTracings']"/>
30
        <xsl:variable name="leader" select="marc:leader"/>
31
        <xsl:variable name="leader6" select="substring($leader,7,1)"/>
32
        <xsl:variable name="leader7" select="substring($leader,8,1)"/>
33
        <xsl:variable name="leader19" select="substring($leader,20,1)"/>
34
        <xsl:variable name="biblionumber" select="marc:datafield[@tag=999]/marc:subfield[@code='c']"/>
35
        <xsl:variable name="controlField007" select="marc:controlfield[@tag=007]"/>
36
        <xsl:variable name="controlField007-00" select="substring($controlField007,1,1)"/>
37
        <xsl:variable name="controlField007-01" select="substring($controlField007,2,1)"/>
38
        <xsl:variable name="controlField008" select="marc:controlfield[@tag=008]"/>
39
        <xsl:variable name="field019b" select="marc:datafield[@tag=019]/marc:subfield[@code='b']"/>
40
        <xsl:variable name="typeOf008">
41
            <!-- The logic here should be exactly the same for NORMARCslim2intranetDetail.xsl, NORMARCslim2intranetResults.xsl, NORMARCslim2OPACDetail.xsl and NORMARCslim2OPACResults.xsl -->
42
            <xsl:choose>
43
                <xsl:when test="$field019b='b' or $field019b='k' or $field019b='l' or $leader6='b'">Mon</xsl:when>
44
                <xsl:when test="$field019b='e' or contains($field019b,'ec') or contains($field019b,'ed') or contains($field019b,'ee') or contains($field019b,'ef') or $leader6='g'">FV</xsl:when>
45
                <xsl:when test="$field019b='c' or $field019b='d' or contains($field019b,'da') or contains($field019b,'db') or contains($field019b,'dc') or contains($field019b,'dd') or contains($field019b,'dg') or contains($field019b,'dh') or contains($field019b,'di') or contains($field019b,'dj') or contains($field019b,'dk') or $leader6='c' or $leader6='d' or $leader6='i' or $leader6='j'">Mus</xsl:when>
46
                <xsl:when test="$field019b='a' or contains($field019b,'ab') or contains($field019b,'aj') or $leader6='e' or $leader6='f'">Kar</xsl:when>
47
                <xsl:when test="$field019b='f' or $field019b='i' or contains($field019b,'ib') or contains($field019b,'ic') or contains($field019b,'fd') or contains($field019b,'ff') or contains($field019b,'fi') or $leader6='k'">gra</xsl:when>
48
                <xsl:when test="$field019b='g' or contains($field019b,'gb') or contains($field019b,'gd') or contains($field019b,'ge') or $leader6='m'">Fil</xsl:when>
49
                <xsl:when test="$leader6='o'">kom</xsl:when>
50
                <xsl:when test="$field019b='h' or $leader6='r'">trd</xsl:when>
51
                <xsl:when test="$field019b='j' or $leader6='a'">
52
                    <xsl:choose>
53
                        <xsl:when test="$leader7='a' or $leader7='c' or $leader7='m' or $leader7='p'">Mon</xsl:when>
54
                        <xsl:when test="$field019b='j' or $leader7='b' or $leader7='s'">Per</xsl:when>
55
                    </xsl:choose>
56
                </xsl:when>
57
            </xsl:choose>
58
        </xsl:variable>
59
        <xsl:variable name="controlField008-23" select="substring($controlField008,24,1)"/>
60
        <xsl:variable name="controlField008-21" select="substring($controlField008,22,1)"/>
61
        <xsl:variable name="controlField008-22" select="substring($controlField008,23,1)"/>
62
        <xsl:variable name="controlField008-24" select="substring($controlField008,25,4)"/>
63
        <xsl:variable name="controlField008-26" select="substring($controlField008,27,1)"/>
64
        <xsl:variable name="controlField008-29" select="substring($controlField008,30,1)"/>
65
        <xsl:variable name="controlField008-34" select="substring($controlField008,35,1)"/>
66
        <xsl:variable name="controlField008-33" select="substring($controlField008,34,1)"/>
67
        <xsl:variable name="controlField008-30-31" select="substring($controlField008,31,2)"/>
68
69
        <xsl:variable name="physicalDescription">
70
71
            <!-- 019$b from BSMARC -->
72
73
            <xsl:if test="$field019b">
74
				<xsl:if test="$field019b='a'"> Kartografisk materiale</xsl:if>
75
				<xsl:if test="contains($field019b,'ab')"> Atlas</xsl:if>
76
				<xsl:if test="contains($field019b,'aj')"> Kart</xsl:if>
77
				<xsl:if test="$field019b='b'"> Manuskripter</xsl:if>
78
				<xsl:if test="$field019b='c'"> Musikktrykk</xsl:if>
79
				<xsl:if test="$field019b='d'"> Lydopptak</xsl:if>
80
				<xsl:if test="contains($field019b,'da')"> Grammofonplate</xsl:if>
81
				<xsl:if test="contains($field019b,'db')"> Kassett</xsl:if>
82
				<xsl:if test="contains($field019b,'dc')"> Kompaktplate</xsl:if>
83
				<xsl:if test="contains($field019b,'dd')"> Avspiller med lydfil (eks. Digibøker)</xsl:if>
84
				<xsl:if test="contains($field019b,'dg')"> Musikk</xsl:if>
85
				<xsl:if test="contains($field019b,'dh')"> Språkkurs</xsl:if>
86
				<xsl:if test="contains($field019b,'di')"> Lydbok</xsl:if>
87
				<xsl:if test="contains($field019b,'dj')"> Annen tale/annet</xsl:if>
88
				<xsl:if test="contains($field019b,'dk')"> Kombidokument</xsl:if>
89
				<xsl:if test="$field019b='e'"> Film og video</xsl:if>
90
				<xsl:if test="contains($field019b,'ec')"> Filmspole</xsl:if>
91
				<xsl:if test="contains($field019b,'ed')"> Videokassett (VHS)</xsl:if>
92
				<xsl:if test="contains($field019b,'ee')"> Videoplate (DVD)</xsl:if>
93
				<xsl:if test="contains($field019b,'ef')"> Blu-ray-plate</xsl:if>
94
				<xsl:if test="$field019b='f'"> Grafisk materiale</xsl:if>
95
				<xsl:if test="contains($field019b,'fd')"> Dias</xsl:if>
96
				<xsl:if test="contains($field019b,'ff')"> Fotografi</xsl:if>
97
				<xsl:if test="contains($field019b,'fi')"> Kunstreproduksjon</xsl:if>
98
				<xsl:if test="$field019b='g'"> Elektroniske ressurser</xsl:if>
99
				<xsl:if test="contains($field019b,'gb')"> Diskett</xsl:if>
100
				<xsl:if test="contains($field019b,'gd')"> Optiske lagringsmedia (CD-ROM)</xsl:if>
101
				<xsl:if test="contains($field019b,'ge')"> Nettressurser</xsl:if>
102
				<xsl:if test="$field019b='h'"> Tredimensjonale gjenstander</xsl:if>
103
				<xsl:if test="$field019b='i'"> Mikroformer</xsl:if>
104
				<xsl:if test="contains($field019b,'ib')"> Mikrofilmspole</xsl:if>
105
				<xsl:if test="contains($field019b,'ic')"> Mikrofilmkort</xsl:if>
106
				<xsl:if test="$field019b='j'"> Periodika</xsl:if>
107
				<xsl:if test="$field019b='k'"> Artikler (i bøker eller periodika)</xsl:if>
108
				<xsl:if test="$field019b='l'"> Fysiske bøker</xsl:if>
109
            </xsl:if>
110
111
            <!-- Check positions 00 and 01 of controlfield 007 -->
112
113
            <xsl:if test="$controlField007-00='a'">
114
		<!-- Kartografisk materiale (unntatt globus) -->
115
				<xsl:if test="$controlField007-01='a'">Anamorfisk kart</xsl:if>
116
				<xsl:if test="$controlField007-01='b'">Atlas</xsl:if>
117
				<xsl:if test="$controlField007-01='c'">Fantasikart</xsl:if>
118
				<xsl:if test="$controlField007-01='d'">Flykart</xsl:if>
119
				<xsl:if test="$controlField007-01='e'">Sjøkart</xsl:if>
120
				<xsl:if test="$controlField007-01='f'">Navigasjonskart</xsl:if>
121
				<xsl:if test="$controlField007-01='g'">Blokkdiagram</xsl:if>
122
				<xsl:if test="$controlField007-01='h'">Stjernekart</xsl:if>
123
				<xsl:if test="$controlField007-01='j'">Kart</xsl:if>
124
				<xsl:if test="$controlField007-01='k'">Kartprofil</xsl:if>
125
				<xsl:if test="$controlField007-01='l'">Fotokart</xsl:if>
126
				<xsl:if test="$controlField007-01='m'">Fotomosaikk</xsl:if>
127
				<xsl:if test="$controlField007-01='n'">Ortofoto</xsl:if>
128
				<xsl:if test="$controlField007-01='o'">Tegnet kart</xsl:if>
129
				<xsl:if test="$controlField007-01='p'">Trykt kart</xsl:if>
130
				<xsl:if test="$controlField007-01='q'">Terrengmodell</xsl:if>
131
				<xsl:if test="$controlField007-01='r'">Fjernanalysebilde</xsl:if>
132
				<xsl:if test="$controlField007-01='s'">Kartseksjon</xsl:if>
133
				<xsl:if test="$controlField007-01='t'">Plan</xsl:if>
134
				<xsl:if test="$controlField007-01='y'">Perspektivkart</xsl:if>
135
				<xsl:if test="$controlField007-01='z'">Annen karttype</xsl:if>
136
            </xsl:if>
137
138
            <xsl:if test="$controlField007-00='c'">
139
		<!-- Maskinlesbar fil -->
140
				<xsl:if test="$controlField007-01='a'">Magnetisk-optisk plate</xsl:if>
141
				<xsl:if test="$controlField007-01='b'">Lagringsbrikke</xsl:if>
142
				<xsl:if test="$controlField007-01='c'">Optisk kassett</xsl:if>
143
				<xsl:if test="$controlField007-01='d'">Diskett</xsl:if>
144
				<xsl:if test="$controlField007-01='h'">Platelager (harddisk)</xsl:if>
145
				<xsl:if test="$controlField007-01='k'">Magnetbåndkassett</xsl:if>
146
				<xsl:if test="$controlField007-01='m'">Magnetbåndspole</xsl:if>
147
				<xsl:if test="$controlField007-01='n'">Fjerntilgang (online)</xsl:if>
148
				<xsl:if test="$controlField007-01='o'">Optisk plate</xsl:if>
149
				<xsl:if test="$controlField007-01='z'">Annet lagringsmedium</xsl:if>
150
            </xsl:if>
151
152
            <xsl:if test="$controlField007-00='d'">
153
		<!-- Globus -->
154
				<xsl:if test="$controlField007-01='a'">Stjerneglobus</xsl:if>
155
				<xsl:if test="$controlField007-01='b'">Planet- eller måneglobus</xsl:if>
156
				<xsl:if test="$controlField007-01='c'">Jordglobus</xsl:if>
157
				<xsl:if test="$controlField007-01='z'">Annen globustype</xsl:if>
158
            </xsl:if>
159
160
            <xsl:if test="$controlField007-00='g'">
161
		<!-- Grafisk materiale som er tenkt projisert eller gjennomlyst -->
162
				<xsl:if test="$controlField007-01='h'">Hologram</xsl:if>
163
				<xsl:if test="$controlField007-01='o'">Billedbånd</xsl:if>
164
				<xsl:if test="$controlField007-01='p'">Stereobilde</xsl:if>
165
				<xsl:if test="$controlField007-01='r'">Røntgenbilde</xsl:if>
166
				<xsl:if test="$controlField007-01='s'">Dia</xsl:if>
167
				<xsl:if test="$controlField007-01='t'">Transparent</xsl:if>
168
				<xsl:if test="$controlField007-01='z'">Annen materialtype</xsl:if>
169
            </xsl:if>
170
171
            <xsl:if test="$controlField007-00='h'">
172
		<!-- Mikroform -->
173
				<xsl:if test="$controlField007-01='a'">Vinduskort</xsl:if>
174
				<xsl:if test="$controlField007-01='c'">Mikrofilmkassett</xsl:if>
175
				<xsl:if test="$controlField007-01='d'">Mikrofilmspole</xsl:if>
176
				<xsl:if test="$controlField007-01='e'">Mikrofilmkort</xsl:if>
177
				<xsl:if test="$controlField007-01='g'">Mikro-opak</xsl:if>
178
				<xsl:if test="$controlField007-01='z'">Annen mikroformtype</xsl:if>
179
            </xsl:if>
180
181
            <xsl:if test="$controlField007-00='k'">
182
		<!-- Grafisk materiale som er ugjennomtrengelig for lys -->
183
				<xsl:if test="$controlField007-01='c'">Collage</xsl:if> <!-- Originalt kunstverk -->
184
				<xsl:if test="$controlField007-01='d'">Tegning</xsl:if> <!-- Originalt kunstverk -->
185
				<xsl:if test="$controlField007-01='e'">Maleri</xsl:if> <!-- Originalt kunstverk -->
186
				<xsl:if test="$controlField007-01='g'">Fotografi - negativ</xsl:if>
187
				<xsl:if test="$controlField007-01='h'">Fotografi</xsl:if> <!-- Brukes også om ugjennomsiktige stereobilder. -->
188
				<xsl:if test="$controlField007-01='i'">Bilde</xsl:if> <!-- Brukes når en mer spesifikk betegnelse er ukjent eller uønsket. -->
189
				<xsl:if test="$controlField007-01='j'">Grafisk blad</xsl:if>
190
				<xsl:if test="$controlField007-01='k'">Flipover</xsl:if>
191
				<xsl:if test="$controlField007-01='l'">Teknisk tegning</xsl:if>
192
				<xsl:if test="$controlField007-01='m'">Studieplansje</xsl:if>
193
				<xsl:if test="$controlField007-01='n'">Plansje</xsl:if>
194
				<xsl:if test="$controlField007-01='o'">Billedkort</xsl:if>
195
				<xsl:if test="$controlField007-01='p'">Ordkort</xsl:if>
196
				<xsl:if test="$controlField007-01='q'">Symbolkort</xsl:if>
197
				<xsl:if test="$controlField007-01='r'">Kunstreproduksjon</xsl:if>
198
				<xsl:if test="$controlField007-01='s'">Postkort</xsl:if>
199
				<xsl:if test="$controlField007-01='t'">Plakat</xsl:if>
200
				<xsl:if test="$controlField007-01='z'">Annen materialtype</xsl:if>
201
            </xsl:if>
202
203
            <xsl:if test="$controlField007-00='m'">
204
		<!-- Film -->
205
				<xsl:if test="$controlField007-01='c'">Filmsløyfe</xsl:if>
206
				<xsl:if test="$controlField007-01='f'">Filmkassett</xsl:if>
207
				<xsl:if test="$controlField007-01='r'">Filmspole</xsl:if>
208
				<xsl:if test="$controlField007-01='z'">Annen filmtype</xsl:if>
209
            </xsl:if>
210
211
            <xsl:if test="$controlField007-00='s'">
212
		<!-- Lydopptak -->
213
				<xsl:if test="$controlField007-01='c'">Kompaktplate</xsl:if>
214
				<xsl:if test="$controlField007-01='d'">Grammofonplate</xsl:if>
215
				<xsl:if test="$controlField007-01='e'">Sylinder</xsl:if> <!-- Lydrull, voksrull, fonografsylinder -->
216
				<xsl:if test="$controlField007-01='g'">Sløyfekassett</xsl:if>
217
				<xsl:if test="$controlField007-01='i'">Filmlydspor</xsl:if>
218
				<xsl:if test="$controlField007-01='q'">Rull (pianorull/orgelrull)</xsl:if>
219
				<xsl:if test="$controlField007-01='s'">Lydkassett</xsl:if>
220
				<xsl:if test="$controlField007-01='t'">Lydbånd</xsl:if>
221
				<xsl:if test="$controlField007-01='w'">Wire</xsl:if>
222
				<xsl:if test="$controlField007-01='z'">Annet lydmateriale</xsl:if>
223
            </xsl:if>
224
225
            <xsl:if test="$controlField007-00='u'">
226
		<!-- Tre-dimensjonal gjenstand -->
227
				<xsl:if test="$controlField007-01='a'">Originalt kunstverk</xsl:if> <!-- F.eks. en skulptur. -->
228
				<xsl:if test="$controlField007-01='c'">Kunstreproduksjon</xsl:if>
229
				<xsl:if test="$controlField007-01='d'">Diorama</xsl:if>
230
				<xsl:if test="$controlField007-01='e'">Øvelsesmodell</xsl:if>
231
				<xsl:if test="$controlField007-01='g'">Spill</xsl:if>
232
				<xsl:if test="$controlField007-01='p'">Mikroskopdia</xsl:if>
233
				<xsl:if test="$controlField007-01='q'">Modell</xsl:if>
234
				<xsl:if test="$controlField007-01='r'">Realia</xsl:if>
235
				<xsl:if test="$controlField007-01='u'">Utstilling</xsl:if>
236
				<xsl:if test="$controlField007-01='z'">Annen type gjenstand</xsl:if>
237
            </xsl:if>
238
239
            <xsl:if test="$controlField007-00='v'">
240
		<!-- Videoopptak -->
241
				<xsl:if test="$controlField007-01='d'">Videoplate</xsl:if>
242
				<xsl:if test="$controlField007-01='f'">Videokassett</xsl:if>
243
				<xsl:if test="$controlField007-01='r'">Videospole</xsl:if>
244
				<xsl:if test="$controlField007-01='z'">Annen type videoopptak</xsl:if>
245
            </xsl:if>
246
247
        </xsl:variable>
248
249
        <!-- Indicate if record is suppressed in OPAC -->
250
        <xsl:if test="$OpacSuppression = 1">
251
            <xsl:if test="marc:datafield[@tag=942][marc:subfield[@code='n'] = '1']">
252
                <span class="results_summary suppressed_opac">Suppressed in OPAC</span>
253
            </xsl:if>
254
        </xsl:if>
255
256
    <a>
257
        <xsl:attribute name="href">
258
            <xsl:call-template name="buildBiblioDefaultViewURL">
259
                <xsl:with-param name="IntranetBiblioDefaultView">
260
                    <xsl:value-of select="$IntranetBiblioDefaultView"/>
261
                </xsl:with-param>
262
            </xsl:call-template>
263
            <xsl:value-of select="str:encode-uri($biblionumber, true())"/>
264
        </xsl:attribute>
265
        <xsl:attribute name="class">title</xsl:attribute>
266
267
        <xsl:if test="marc:datafield[@tag=245]">
268
        <xsl:for-each select="marc:datafield[@tag=245]">
269
            <xsl:variable name="title">
270
                     <xsl:call-template name="subfieldSelect">
271
                        <xsl:with-param name="codes">a</xsl:with-param>
272
                    </xsl:call-template>
273
                    <xsl:if test="marc:subfield[@code='h']">
274
                        <xsl:text> </xsl:text>
275
                        <xsl:call-template name="subfieldSelect">
276
                            <xsl:with-param name="codes">h</xsl:with-param>
277
                        </xsl:call-template>
278
                    </xsl:if>
279
                    <xsl:if test="marc:subfield[@code='b']">
280
                        <xsl:text> </xsl:text>
281
                        <xsl:call-template name="subfieldSelect">
282
                            <xsl:with-param name="codes">b</xsl:with-param>
283
                        </xsl:call-template>
284
                    </xsl:if>
285
                <xsl:text> </xsl:text>
286
                    <xsl:call-template name="subfieldSelect">
287
                        <xsl:with-param name="codes">np</xsl:with-param>
288
                     </xsl:call-template>
289
            </xsl:variable>
290
            <xsl:variable name="titleChop">
291
                <xsl:call-template name="chopPunctuation">
292
                    <xsl:with-param name="chopString">
293
                        <xsl:value-of select="$title"/>
294
                    </xsl:with-param>
295
                </xsl:call-template>
296
            </xsl:variable>
297
            <xsl:value-of select="$titleChop"/>
298
        </xsl:for-each>
299
        </xsl:if>
300
    </a>
301
302
    <xsl:choose>
303
    <xsl:when test="marc:datafield[@tag=100] or marc:datafield[@tag=110] or marc:datafield[@tag=111] or marc:datafield[@tag=700] or marc:datafield[@tag=710] or marc:datafield[@tag=711]">
304
    <p class="author">av
305
    <xsl:for-each select="marc:datafield[(@tag=100 or @tag=700) and @ind1!='z']">
306
    <a>
307
    <xsl:choose>
308
        <xsl:when test="marc:subfield[@code=9] and $UseAuthoritiesForTracings='1'">
309
            <xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=an:<xsl:value-of select="str:encode-uri(marc:subfield[@code=9], true())"/></xsl:attribute>
310
        </xsl:when>
311
        <xsl:otherwise>
312
        <xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=au:"<xsl:value-of select="str:encode-uri(marc:subfield[@code='a'], true())"/>"</xsl:attribute>
313
        </xsl:otherwise>
314
    </xsl:choose>
315
    <xsl:call-template name="nameABCDQ"/></a>
316
    <xsl:choose>
317
    <xsl:when test="position()=last()"><xsl:text>. </xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
318
    </xsl:for-each>
319
320
    <xsl:for-each select="marc:datafield[(@tag=110 or @tag=710) and @ind1!='z']">
321
    <a>
322
    <xsl:choose>
323
        <xsl:when test="marc:subfield[@code=9] and $UseAuthoritiesForTracings='1'">
324
            <xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=an:<xsl:value-of select="str:encode-uri(marc:subfield[@code=9], true())"/></xsl:attribute>
325
        </xsl:when>
326
        <xsl:otherwise>
327
        <xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=au:"<xsl:value-of select="str:encode-uri(marc:subfield[@code='a'], true())"/>"</xsl:attribute>
328
        </xsl:otherwise>
329
    </xsl:choose>
330
    <xsl:call-template name="nameABCDN"/></a>
331
    <xsl:choose><xsl:when test="position()=last()"><xsl:text> </xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
332
    </xsl:for-each>
333
334
    <xsl:for-each select="marc:datafield[(@tag=111 or @tag=711) and @ind1!='z']">
335
        <xsl:choose>
336
        <xsl:when test="marc:subfield[@code='n']">
337
           <xsl:text> </xsl:text>
338
           <xsl:call-template name="subfieldSelect">
339
              <xsl:with-param name="codes">n</xsl:with-param>                              </xsl:call-template>
340
           <xsl:text> </xsl:text>
341
        </xsl:when>
342
        </xsl:choose>
343
    <a>
344
    <xsl:choose>
345
        <xsl:when test="marc:subfield[@code=9] and $UseAuthoritiesForTracings='1'">
346
            <xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=an:<xsl:value-of select="str:encode-uri(marc:subfield[@code=9], true())"/></xsl:attribute>
347
        </xsl:when>
348
        <xsl:otherwise>
349
        <xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=au:"<xsl:value-of select="str:encode-uri(marc:subfield[@code='a'], true())"/>"</xsl:attribute>
350
        </xsl:otherwise>
351
    </xsl:choose>
352
    <xsl:call-template name="nameACDEQ"/></a>
353
    <xsl:choose><xsl:when test="position()=last()"><xsl:text>. </xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
354
355
    </xsl:for-each>
356
    </p>
357
    </xsl:when>
358
    </xsl:choose>
359
360
    <xsl:if test="marc:datafield[@tag=300]">
361
    <span class="results_summary description"><span class="label">Beskrivelse: </span>
362
        <xsl:for-each select="marc:datafield[@tag=300]">
363
            <xsl:call-template name="chopPunctuation">
364
              <xsl:with-param name="chopString">
365
                <xsl:call-template name="subfieldSelect">
366
                    <xsl:with-param name="codes">abce</xsl:with-param>
367
                </xsl:call-template>
368
               </xsl:with-param>
369
           </xsl:call-template>
370
                <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
371
        </xsl:for-each>
372
    </span>
373
   </xsl:if>
374
375
    <xsl:if test="marc:datafield[@tag=020]">
376
    <span class="results_summary isbn"><span class="label">ISBN: </span>
377
    <xsl:for-each select="marc:datafield[@tag=020]">
378
    <xsl:variable name="isbn" select="marc:subfield[@code='a']"/>
379
            <xsl:value-of select="marc:subfield[@code='a']"/>
380
            <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
381
    </xsl:for-each>
382
    </span>
383
    </xsl:if>
384
385
    <xsl:if test="marc:datafield[@tag=022]">
386
    <span class="results_summary issn"><span class="label">ISSN: </span>
387
    <xsl:for-each select="marc:datafield[@tag=022]">
388
            <xsl:value-of select="marc:subfield[@code='a']"/>
389
            <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
390
    </xsl:for-each>
391
    </span>
392
    </xsl:if>
393
394
    <xsl:if test="marc:datafield[@tag=250]">
395
	<span class="results_summary">
396
    <span class="label">Utgave: </span>
397
            <xsl:for-each select="marc:datafield[@tag=250]">
398
                    <xsl:call-template name="subfieldSelect">
399
                        <xsl:with-param name="codes">ab</xsl:with-param>
400
                    </xsl:call-template>
401
            </xsl:for-each>
402
	</span>
403
    </xsl:if>
404
405
        <!-- Analytics -->
406
        <xsl:if test="$leader7='s' or $leader7='c'">
407
        <span class="results_summary analytics"><span class="label">Analytics: </span>
408
            <a>
409
            <xsl:choose>
410
            <xsl:when test="$UseControlNumber = '1' and marc:controlfield[@tag=001]">
411
                <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=rcn:<xsl:value-of select="str:encode-uri(marc:controlfield[@tag=001], true())"/>+and+(bib-level:a+or+bib-level:b)</xsl:attribute>
412
            </xsl:when>
413
            <xsl:otherwise>
414
                <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=Host-item:<xsl:value-of select="str:encode-uri(translate(marc:datafield[@tag=245]/marc:subfield[@code='a'], '/', ''), true())"/></xsl:attribute>
415
            </xsl:otherwise>
416
            </xsl:choose>
417
            <xsl:text>Show analytics</xsl:text>
418
            </a>
419
        </span>
420
        </xsl:if>
421
422
        <!-- 773 - Links from child to parent -->
423
        <xsl:if test="marc:datafield[@tag=773]">
424
        <xsl:for-each select="marc:datafield[@tag=773]">
425
        <xsl:if test="@ind1=0">
426
        <span class="results_summary in"><span class="label">
427
        <xsl:choose>
428
        <xsl:when test="@ind2=' '">
429
            In:
430
        </xsl:when>
431
        <xsl:when test="@ind2=8">
432
            <xsl:if test="marc:subfield[@code='i']">
433
                <xsl:value-of select="marc:subfield[@code='i']"/>
434
            </xsl:if>
435
        </xsl:when>
436
        </xsl:choose>
437
        </span>
438
                <xsl:variable name="f773">
439
                    <xsl:call-template name="chopPunctuation"><xsl:with-param name="chopString"><xsl:call-template name="subfieldSelect">
440
                        <xsl:with-param name="codes">a_t</xsl:with-param>
441
                    </xsl:call-template></xsl:with-param></xsl:call-template>
442
                </xsl:variable>
443
            <xsl:choose>
444
                <xsl:when test="$UseControlNumber = '1' and marc:subfield[@code='w']">
445
                    <a><xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=Control-number:<xsl:call-template name="extractControlNumber"><xsl:with-param name="subfieldW" select="marc:subfield[@code='w']"/></xsl:call-template></xsl:attribute>
446
                        <xsl:value-of select="translate($f773, '()', '')"/>
447
                    </a>
448
                    <xsl:if test="marc:subfield[@code='g']"><xsl:text> </xsl:text><xsl:value-of select="marc:subfield[@code='g']"/></xsl:if>
449
                </xsl:when>
450
                <xsl:when test="marc:subfield[@code='0']">
451
                    <a><xsl:attribute name="href">/cgi-bin/koha/catalogue/detail.pl?biblionumber=<xsl:value-of select="str:encode-uri(marc:subfield[@code='0'], true())"/></xsl:attribute>
452
                        <xsl:value-of select="$f773"/>
453
                    </a>
454
                </xsl:when>
455
                <xsl:otherwise>
456
                    <a><xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=ti,phr:<xsl:value-of select="str:encode-uri(translate($f773, '()', ''), true())"/></xsl:attribute>
457
                        <xsl:value-of select="$f773"/>
458
                    </a>
459
                    <xsl:if test="marc:subfield[@code='g']"><xsl:text> </xsl:text><xsl:value-of select="str:encode-uri(marc:subfield[@code='g'], true())"/></xsl:if>
460
                </xsl:otherwise>
461
            </xsl:choose>
462
        </span>
463
        <xsl:if test="marc:subfield[@code='n']">
464
            <span class="results_summary"><xsl:value-of select="marc:subfield[@code='n']"/></span>
465
        </xsl:if>
466
        </xsl:if>
467
        </xsl:for-each>
468
        </xsl:if>
469
470
    <span class="results_summary">
471
    <xsl:if test="$typeOf008!=''">
472
        <span class="label">Materialtype: </span>
473
            <xsl:choose>
474
                <xsl:when test="$typeOf008='Mon'"><img src="/intranet-tmpl/prog/img/famfamfam/BK.png" alt="Bok" title="Bok"/> Bok</xsl:when>
475
                <xsl:when test="$typeOf008='Per'"><img src="/intranet-tmpl/prog/img/famfamfam/AR.png" alt="Periodika" title="Periodika"/> Periodika</xsl:when>
476
                <xsl:when test="$typeOf008='Fil'"><img src="/intranet-tmpl/prog/img/famfamfam/CF.png" alt="Fil" title="Fil"/> Fil</xsl:when>
477
                <xsl:when test="$typeOf008='Kar'"><img src="/intranet-tmpl/prog/img/famfamfam/MP.png" alt="Kart" title="Kart"/> Kart</xsl:when>
478
                <xsl:when test="$typeOf008='FV'"><img  src="/intranet-tmpl/prog/img/famfamfam/VM.png" alt="Film og video" title="Film og video"/> Film og video</xsl:when>
479
                <xsl:when test="$typeOf008='Mus'"><img src="/intranet-tmpl/prog/img/famfamfam/PR.png" alt="Musikktrykk og lydopptak" title="Musikktrykk og lydopptak"/> Musikk</xsl:when>
480
                <xsl:when test="$typeOf008='gra'"><img src="/intranet-tmpl/prog/img/famfamfam/GR.png" alt="Grafisk materiale" title="Grafisk materiale"/> Grafisk materiale</xsl:when>
481
                <xsl:when test="$typeOf008='kom'"><img src="/intranet-tmpl/prog/img/famfamfam/MX.png" alt="Kombidokumenter" title="Kombidokumenter"/> Kombidokumenter</xsl:when>
482
                <xsl:when test="$typeOf008='trd'"><img src="/intranet-tmpl/prog/img/famfamfam/TD.png" alt="Tre-dimensjonale gjenstander" title="Tre-dimensjonale gjenstander"/> Tre-dimensjonale gjenstander</xsl:when>
483
            </xsl:choose>
484
    </xsl:if>
485
    <xsl:if test="string-length(normalize-space($physicalDescription))">
486
        <span class="label">; Format: </span><xsl:copy-of select="$physicalDescription"></xsl:copy-of>
487
    </xsl:if>
488
489
        <xsl:if test="$controlField008-21 or $controlField008-22 or $controlField008-24 or $controlField008-26 or $controlField008-29 or $controlField008-34 or $controlField008-33 or $controlField008-30-31 or $controlField008-33">
490
491
        <xsl:if test="$typeOf008='Per'">
492
        <xsl:if test="$controlField008-21 and contains($controlField008-21,'amnpz')">
493
        <span class="label">; Type periodikum: </span>
494
        </xsl:if>
495
            <xsl:choose>
496
                <xsl:when test="$controlField008-21='a'">Ã…rbok</xsl:when>
497
				<xsl:when test="$controlField008-21='m'">Monografiserie</xsl:when>
498
				<xsl:when test="$controlField008-21='n'">Avis</xsl:when>
499
				<xsl:when test="$controlField008-21='p'">Tidsskrift</xsl:when>
500
				<xsl:when test="$controlField008-21='z'">Andre typer periodika</xsl:when>
501
            </xsl:choose>
502
        </xsl:if>
503
504
        <xsl:if test="$typeOf008='Mon' or $typeOf008='Per'">
505
        <span class="label">; Innhold: </span>
506
            <xsl:choose>
507
                <xsl:when test="contains($controlField008-24,'a')"> Sammendrag(abstracts)/Referatorganer</xsl:when>
508
                <xsl:when test="contains($controlField008-24,'b')"> Bibliografier</xsl:when>
509
                <xsl:when test="contains($controlField008-24,'c')"> Kataloger</xsl:when>
510
                <xsl:when test="contains($controlField008-24,'d')"> Ordbøker</xsl:when>
511
                <xsl:when test="contains($controlField008-24,'e')"> Konversasjonsleksika</xsl:when>
512
                <xsl:when test="contains($controlField008-24,'f')"> Håndbøker</xsl:when>
513
                <xsl:when test="contains($controlField008-24,'h')"> Referanseverk</xsl:when>
514
                <xsl:when test="contains($controlField008-24,'i')"> Registre</xsl:when>
515
                <xsl:when test="contains($controlField008-24,'k')"> Diskografier</xsl:when>
516
                <xsl:when test="contains($controlField008-24,'l')"> Lover og forskrifter</xsl:when>
517
                <xsl:when test="contains($controlField008-24,'m')"> Hovedoppgaver/diplomoppgaver</xsl:when>
518
                <xsl:when test="contains($controlField008-24,'n')"> Oversiktsverker innenfor et emne</xsl:when>
519
                <xsl:when test="contains($controlField008-24,'o')"> Anmeldelser</xsl:when>
520
                <xsl:when test="contains($controlField008-24,'q')"> Filmografier</xsl:when>
521
                <xsl:when test="contains($controlField008-24,'r')"> Adressebøker</xsl:when>
522
                <xsl:when test="contains($controlField008-24,'s')"> Statistikker</xsl:when>
523
                <xsl:when test="contains($controlField008-24,'t')"> Tekniske rapporter</xsl:when>
524
                <xsl:when test="contains($controlField008-24,'x')"> Doktoravhandlinger/lisensiat-avhandlinger</xsl:when>
525
            </xsl:choose>
526
            <xsl:choose>
527
                <xsl:when test="$controlField008-29='1'">
528
                    Konferansepublikasjon
529
                </xsl:when>
530
            </xsl:choose>
531
        </xsl:if>
532
        <xsl:if test="$typeOf008='CF'">
533
            <xsl:if test="$controlField008-26='a' or $controlField008-26='b' or $controlField008-26='c' or $controlField008-26='d' or $controlField008-26='e' or $controlField008-26='f' or $controlField008-26='g' or $controlField008-26='h' or $controlField008-26='i' or $controlField008-26='j'">
534
            <span class="label">; Type maskinlesbar fil: </span>
535
            </xsl:if>
536
            <xsl:choose>
537
                <xsl:when test="$controlField008-26='a'">Numeriske data</xsl:when>
538
                <xsl:when test="$controlField008-26='b'">Programvare</xsl:when>
539
                <xsl:when test="$controlField008-26='c'">Grafiske data</xsl:when>
540
                <xsl:when test="$controlField008-26='d'">Tekst</xsl:when>
541
                <xsl:when test="$controlField008-26='e'">Bibliografiske data</xsl:when>
542
                <xsl:when test="$controlField008-26='f'">Font</xsl:when>
543
                <xsl:when test="$controlField008-26='g'">Spill</xsl:when>
544
                <xsl:when test="$controlField008-26='h'">Lyd</xsl:when>
545
                <xsl:when test="$controlField008-26='i'">Interaktivt multimedium</xsl:when>
546
                <xsl:when test="$controlField008-26='j'">Online tjeneste</xsl:when>
547
            </xsl:choose>
548
        </xsl:if>
549
        <xsl:if test="$typeOf008='Mon'">
550
            <xsl:if test="(substring($controlField008,25,1)='j') or (substring($controlField008,25,1)='1') or ($controlField008-34='a' or $controlField008-34='b' or $controlField008-34='c' or $controlField008-34='d')">
551
            <span class="label">; Innhold: </span>
552
            </xsl:if>
553
            <xsl:if test="substring($controlField008,31,1)='1' or substring($controlField008,31,1)='a' or substring($controlField008,31,1)='b'">
554
                Festskrift
555
            </xsl:if>
556
            <xsl:if test="$controlField008-34='a' or $controlField008-34='a' or $controlField008-34='b' or $controlField008-34='c' or $controlField008-34='d'">
557
                Biografi
558
            </xsl:if>
559
560
            <xsl:if test="$controlField008-33 and $controlField008-33!='^' and $controlField008-33!=' '">
561
            <span class="label">; Litterær form: </span>
562
            </xsl:if>
563
            <xsl:choose>
564
                <xsl:when test="$controlField008-33='0'">Ikke skjønnlitteratur</xsl:when>
565
                <xsl:when test="$controlField008-33='l'">Lærebok, brevkurs</xsl:when>
566
                <xsl:when test="$controlField008-33='1'">Skjønnlitteratur</xsl:when>
567
                <xsl:when test="$controlField008-33='r'">Roman</xsl:when>
568
                <xsl:when test="$controlField008-33='n'">Novelle / fortelling</xsl:when>
569
                <xsl:when test="$controlField008-33='d'">Dikt</xsl:when>
570
                <xsl:when test="$controlField008-33='s'">Skuespill</xsl:when>
571
                <xsl:when test="$controlField008-33='t'">Tegneserie</xsl:when>
572
                <xsl:when test="$controlField008-33='a'">Antologi</xsl:when>
573
                <xsl:when test="$controlField008-33='p'">Pekebok</xsl:when>
574
            </xsl:choose>
575
        </xsl:if>
576
        <xsl:if test="$typeOf008='Mus' and $controlField008-30-31 and $controlField008-30-31!='^^' and $controlField008-30-31!='  '">
577
            <span class="label">; Litterær form: </span> <!-- Literary text for sound recordings -->
578
            <xsl:if test="contains($controlField008-30-31,'a')">Selvbiografier</xsl:if>
579
            <xsl:if test="contains($controlField008-30-31,'b')">Biografier</xsl:if>
580
            <xsl:if test="contains($controlField008-30-31,'c')">Samtaler og diskusjoner</xsl:if>
581
            <xsl:if test="contains($controlField008-30-31,'d')">Drama</xsl:if>
582
            <xsl:if test="contains($controlField008-30-31,'e')">Essays</xsl:if>
583
            <xsl:if test="contains($controlField008-30-31,'f')">Romaner</xsl:if>
584
            <xsl:if test="contains($controlField008-30-31,'g')">Rapporter, referater</xsl:if>
585
            <xsl:if test="contains($controlField008-30-31,'h')">Fortellinger, noveller</xsl:if>
586
            <xsl:if test="contains($controlField008-30-31,'i')">Undervisning</xsl:if>
587
            <xsl:if test="contains($controlField008-30-31,'j')">Språkundervisning</xsl:if>
588
            <xsl:if test="contains($controlField008-30-31,'k')">Komedier</xsl:if>
589
            <xsl:if test="contains($controlField008-30-31,'l')">Foredrag, taler</xsl:if>
590
            <xsl:if test="contains($controlField008-30-31,'m')">Memoarer</xsl:if>
591
            <xsl:if test="contains($controlField008-30-31,'o')">Eventyr</xsl:if>
592
            <xsl:if test="contains($controlField008-30-31,'p')">Dikt</xsl:if>
593
            <xsl:if test="contains($controlField008-30-31,'r')">Fremføring av alle typer ikke-musikalske produksjoner</xsl:if>
594
            <xsl:if test="contains($controlField008-30-31,'s')">Lyder (f.eks. fuglelyder)</xsl:if>
595
            <xsl:if test="contains($controlField008-30-31,'t')">Intervjuer</xsl:if>
596
            <xsl:if test="contains($controlField008-30-31,'z')">Andre typer innhold</xsl:if>
597
        </xsl:if>
598
599
        </xsl:if>
600
601
    <xsl:if test="$typeOf008='Mon'">
602
        <span class="label">; MÃ¥lgruppe: </span>
603
        <xsl:choose>
604
			<xsl:when test="$controlField008-22='a'">Voksne;</xsl:when>
605
			<xsl:when test="$controlField008-22='b'">Billedbøker for voksne;</xsl:when>
606
			<xsl:when test="$controlField008-22='j'">Barn og ungdom;</xsl:when>
607
			<xsl:when test="$controlField008-22='k'">Billedbøker;</xsl:when>
608
			<xsl:when test="$controlField008-22='l'">Barn i alderen til og med 5 år;</xsl:when>
609
			<xsl:when test="$controlField008-22='m'">Elever på 1. til 3. klassetrinn;</xsl:when>
610
			<xsl:when test="$controlField008-22='n'">Elever på 4. og 5. klassetrinn;</xsl:when>
611
			<xsl:when test="$controlField008-22='o'">Elever på 6. og 7. klassetrinn;</xsl:when>
612
			<xsl:when test="$controlField008-22='p'">Elever på ungdomstrinnet;</xsl:when>
613
			<xsl:when test="$controlField008-22='v'">Billedbøker for barn i alderen til og med 5 år;</xsl:when>
614
			<xsl:when test="$controlField008-22='w'">Billedbøker for elever på 1. til 3. klassetrinn;</xsl:when>
615
			<xsl:when test="$controlField008-22='x'">Billedbøker for elever på 4. og 5. klassetrinn;</xsl:when>
616
			<xsl:when test="$controlField008-22='y'">Billedbøker for elever på 6. og 7. klassetrinn;</xsl:when>
617
			<xsl:when test="$controlField008-22='z'">Billedbøker for elever på ungdomstrinnet;</xsl:when>
618
			<xsl:when test="$controlField008-22='f'">Spesialisert;</xsl:when>
619
			<xsl:when test="$controlField008-22='q'">Lettlest;</xsl:when>
620
			<xsl:when test="$controlField008-22='r'">For psykisk utviklingshemmede;</xsl:when>
621
			<xsl:when test="$controlField008-22='s'">Storskrift;</xsl:when>
622
			<xsl:when test="$controlField008-22='g'">Generell;</xsl:when>
623
			<xsl:when test="$controlField008-22='u'">Ukjent;</xsl:when>
624
        </xsl:choose>
625
    </xsl:if>
626
    <xsl:if test="$typeOf008='Per'">
627
        <span class="label">; MÃ¥lgruppe: </span>
628
        <xsl:choose>
629
			<xsl:when test="$controlField008-22='a'">Voksne;</xsl:when>
630
			<xsl:when test="$controlField008-22='b'">Tegneserier for voksne;</xsl:when>
631
			<xsl:when test="$controlField008-22='j'">Barn og ungdom;</xsl:when>
632
			<xsl:when test="$controlField008-22='k'">Tegneserier;</xsl:when>
633
			<xsl:when test="$controlField008-22='l'">Barn i alderen til og med 5 år;</xsl:when>
634
			<xsl:when test="$controlField008-22='m'">Elever på 1. til 3. klassetrinn;</xsl:when>
635
			<xsl:when test="$controlField008-22='n'">Elever på 4. og 5. klassetrinn;</xsl:when>
636
			<xsl:when test="$controlField008-22='o'">Elever på 6. og 7. klassetrinn;</xsl:when>
637
			<xsl:when test="$controlField008-22='p'">Elever på ungdomstrinnet;</xsl:when>
638
			<xsl:when test="$controlField008-22='v'">Tegneserier for barn i alderen til og med 5 år;</xsl:when>
639
			<xsl:when test="$controlField008-22='w'">Tegneserier for elever på 1. til 3. klassetrinn;</xsl:when>
640
			<xsl:when test="$controlField008-22='x'">Tegneserier for elever på 4. og 5. klassetrinn;</xsl:when>
641
			<xsl:when test="$controlField008-22='y'">Tegneserier for elever på 6. og 7. klassetrinn;</xsl:when>
642
			<xsl:when test="$controlField008-22='z'">Tegneserier for elever på ungdomstrinnet;</xsl:when>
643
			<xsl:when test="$controlField008-22='f'">Spesialisert;</xsl:when>
644
			<xsl:when test="$controlField008-22='q'">Lettlest;</xsl:when>
645
			<xsl:when test="$controlField008-22='r'">For psykisk utviklingshemmede;</xsl:when>
646
			<xsl:when test="$controlField008-22='s'">Storskrift;</xsl:when>
647
			<xsl:when test="$controlField008-22='g'">Generell;</xsl:when>
648
			<xsl:when test="$controlField008-22='u'">Ukjent;</xsl:when>
649
        </xsl:choose>
650
    </xsl:if>
651
    <xsl:if test="$typeOf008='Fil' or $typeOf008='Mus'">
652
        <span class="label">; MÃ¥lgruppe: </span>
653
        <xsl:choose>
654
			<xsl:when test="$controlField008-22='a'">Voksne;</xsl:when>
655
			<xsl:when test="$controlField008-22='j'">Barn og ungdom;</xsl:when>
656
			<xsl:when test="$controlField008-22='1'">Barn i alderen til og med 5 år;</xsl:when>
657
			<xsl:when test="$controlField008-22='m'">Elever på 1. til 3. klassetrinn;</xsl:when>
658
			<xsl:when test="$controlField008-22='n'">Elever på 4. og 5. klassetrinn;</xsl:when>
659
			<xsl:when test="$controlField008-22='o'">Elever på 6. og 7. klassetrinn;</xsl:when>
660
			<xsl:when test="$controlField008-22='p'">Elever på ungdomstrinnet;</xsl:when>
661
			<xsl:when test="$controlField008-22='f'">Spesialisert;</xsl:when>
662
			<xsl:when test="$controlField008-22='q'">Lettlest;</xsl:when>
663
			<xsl:when test="$controlField008-22='r'">For psykisk utviklingshemmede;</xsl:when>
664
			<xsl:when test="$controlField008-22='s'">Storskrift;</xsl:when>
665
			<xsl:when test="$controlField008-22='g'">Generell;</xsl:when>
666
			<xsl:when test="$controlField008-22='u'">Ukjent;</xsl:when>
667
        </xsl:choose>
668
    </xsl:if>
669
    <xsl:if test="$typeOf008='FV'">
670
        <span class="label">; MÃ¥lgruppe: </span>
671
        <xsl:choose>
672
			<xsl:when test="$controlField008-22='a'">Voksne;</xsl:when>
673
			<xsl:when test="$controlField008-22='1'">Voksne over 18 år;</xsl:when>
674
			<xsl:when test="$controlField008-22='2'">Voksne over 15 år;</xsl:when>
675
			<xsl:when test="$controlField008-22='j'">Barn og ungdom;</xsl:when>
676
			<xsl:when test="$controlField008-22='4'">Ungdom over 12 år;</xsl:when>
677
			<xsl:when test="$controlField008-22='5'">Barn over 7 år;</xsl:when>
678
			<xsl:when test="$controlField008-22='6'">Småbarn;</xsl:when>
679
			<xsl:when test="$controlField008-22='f'">Spesialisert;</xsl:when>
680
			<xsl:when test="$controlField008-22='g'">Generell;</xsl:when>
681
			<xsl:when test="$controlField008-22='u'">Ukjent;</xsl:when>
682
        </xsl:choose>
683
    </xsl:if>
684
	</span>
685
686
  <!-- Utgivelse, distribusjon osv -->
687
    <xsl:if test="marc:datafield[@tag=260]">
688
	<span class="results_summary">
689
    <span class="label">Utgiver: </span>
690
            <xsl:for-each select="marc:datafield[@tag=260]">
691
                    <xsl:call-template name="subfieldSelect">
692
                        <xsl:with-param name="codes">abcefg</xsl:with-param>
693
                    </xsl:call-template>
694
            </xsl:for-each>
695
	</span>
696
    </xsl:if>
697
698
  <!-- Parallelltittel (R) -->
699
  <xsl:if test="marc:datafield[@tag=246]">
700
	<span class="results_summary">
701
    <span class="label">Parallelltittel: </span>
702
            <xsl:for-each select="marc:datafield[@tag=246]">
703
                    <xsl:call-template name="subfieldSelect">
704
                        <xsl:with-param name="codes">ab</xsl:with-param>
705
                    </xsl:call-template>
706
            </xsl:for-each>
707
	</span>
708
  </xsl:if>
709
710
    <xsl:if test="marc:datafield[@tag=856]">
711
         <span class="results_summary">
712
			   <span class="label">Online tilgang: </span>
713
                            <xsl:for-each select="marc:datafield[@tag=856]">
714
                            <xsl:variable name="SubqText"><xsl:value-of select="marc:subfield[@code='q']"/></xsl:variable>
715
				   <a><xsl:attribute name="href"><xsl:value-of select="marc:subfield[@code='u']"/></xsl:attribute>
716
                                    <xsl:choose>
717
                                     <xsl:when test="($Show856uAsImage='Results' or $Show856uAsImage='Both') and (substring($SubqText,1,6)='image/' or $SubqText='img' or $SubqText='bmp' or $SubqText='cod' or $SubqText='gif' or $SubqText='ief' or $SubqText='jpe' or $SubqText='jpeg' or $SubqText='jpg' or $SubqText='jfif' or $SubqText='png' or $SubqText='svg' or $SubqText='tif' or $SubqText='tiff' or $SubqText='ras' or $SubqText='cmx' or $SubqText='ico' or $SubqText='pnm' or $SubqText='pbm' or $SubqText='pgm' or $SubqText='ppm' or $SubqText='rgb' or $SubqText='xbm' or $SubqText='xpm' or $SubqText='xwd')">
718
                                        <xsl:element name="img"><xsl:attribute name="src"><xsl:value-of select="marc:subfield[@code='u']"/></xsl:attribute><xsl:attribute name="alt"><xsl:value-of select="marc:subfield[@code='y']"/></xsl:attribute><xsl:attribute name="height">100</xsl:attribute></xsl:element><xsl:text></xsl:text>
719
                                    </xsl:when>
720
                                    <xsl:when test="marc:subfield[@code='y' or @code='3' or @code='z']">
721
                                        <xsl:call-template name="subfieldSelect">
722
                                        <xsl:with-param name="codes">y3z</xsl:with-param>
723
                                        </xsl:call-template>
724
                                    </xsl:when>
725
                                    <xsl:when test="not(marc:subfield[@code='y']) and not(marc:subfield[@code='3']) and not(marc:subfield[@code='z'])">
726
					<xsl:choose>
727
					<xsl:when test="$URLLinkText!=''">
728
						<xsl:value-of select="$URLLinkText"/>
729
					</xsl:when>
730
					<xsl:otherwise>
731
						<xsl:text>Klikk her for online tilgang</xsl:text>
732
					</xsl:otherwise>
733
					</xsl:choose>
734
                                    </xsl:when>
735
                                    </xsl:choose>
736
                                    </a>
737
                                    <xsl:choose>
738
                                    <xsl:when test="position()=last()"><xsl:text> </xsl:text></xsl:when>
739
                                    <xsl:otherwise> | </xsl:otherwise>
740
                                    </xsl:choose>
741
                            </xsl:for-each>
742
                            </span>
743
                        </xsl:if>
744
    </xsl:template>
745
746
    <xsl:template name="nameABCDQ">
747
            <xsl:call-template name="chopPunctuation">
748
                <xsl:with-param name="chopString">
749
                    <xsl:call-template name="subfieldSelect">
750
                        <xsl:with-param name="codes">aq</xsl:with-param>
751
                    </xsl:call-template>
752
                </xsl:with-param>
753
                <xsl:with-param name="punctuation">
754
                    <xsl:text>:,;/ </xsl:text>
755
                </xsl:with-param>
756
            </xsl:call-template>
757
        <xsl:call-template name="termsOfAddress"/>
758
    </xsl:template>
759
760
    <xsl:template name="nameABCDN">
761
        <xsl:for-each select="marc:subfield[@code='a']">
762
                <xsl:call-template name="chopPunctuation">
763
                    <xsl:with-param name="chopString" select="."/>
764
                </xsl:call-template>
765
        </xsl:for-each>
766
        <xsl:for-each select="marc:subfield[@code='b']">
767
                <xsl:value-of select="."/>
768
        </xsl:for-each>
769
        <xsl:if test="marc:subfield[@code='c'] or marc:subfield[@code='d'] or marc:subfield[@code='n']">
770
                <xsl:call-template name="subfieldSelect">
771
                    <xsl:with-param name="codes">cdn</xsl:with-param>
772
                </xsl:call-template>
773
        </xsl:if>
774
    </xsl:template>
775
776
    <xsl:template name="nameACDEQ">
777
            <xsl:call-template name="subfieldSelect">
778
                <xsl:with-param name="codes">acdeq</xsl:with-param>
779
            </xsl:call-template>
780
    </xsl:template>
781
782
    <xsl:template name="termsOfAddress">
783
        <xsl:if test="marc:subfield[@code='b' or @code='c']">
784
            <xsl:call-template name="chopPunctuation">
785
                <xsl:with-param name="chopString">
786
                    <xsl:call-template name="subfieldSelect">
787
                        <xsl:with-param name="codes">bc</xsl:with-param>
788
                    </xsl:call-template>
789
                </xsl:with-param>
790
            </xsl:call-template>
791
        </xsl:if>
792
    </xsl:template>
793
794
    <xsl:template name="nameDate">
795
        <xsl:for-each select="marc:subfield[@code='d']">
796
            <xsl:call-template name="chopPunctuation">
797
                <xsl:with-param name="chopString" select="."/>
798
            </xsl:call-template>
799
        </xsl:for-each>
800
    </xsl:template>
801
802
    <xsl:template name="role">
803
        <xsl:for-each select="marc:subfield[@code='e']">
804
                    <xsl:value-of select="."/>
805
        </xsl:for-each>
806
        <xsl:for-each select="marc:subfield[@code='4']">
807
                    <xsl:value-of select="."/>
808
        </xsl:for-each>
809
    </xsl:template>
810
811
    <xsl:template name="specialSubfieldSelect">
812
        <xsl:param name="anyCodes"/>
813
        <xsl:param name="axis"/>
814
        <xsl:param name="beforeCodes"/>
815
        <xsl:param name="afterCodes"/>
816
        <xsl:variable name="str">
817
            <xsl:for-each select="marc:subfield">
818
                <xsl:if test="contains($anyCodes, @code) or (contains($beforeCodes,@code) and following-sibling::marc:subfield[@code=$axis]) or (contains($afterCodes,@code) and preceding-sibling::marc:subfield[@code=$axis])">
819
                    <xsl:value-of select="text()"/>
820
                    <xsl:text> </xsl:text>
821
                </xsl:if>
822
            </xsl:for-each>
823
        </xsl:variable>
824
        <xsl:value-of select="substring($str,1,string-length($str)-1)"/>
825
    </xsl:template>
826
827
    <xsl:template name="subtitle">
828
        <xsl:if test="marc:subfield[@code='b']">
829
                <xsl:call-template name="chopPunctuation">
830
                    <xsl:with-param name="chopString">
831
                        <xsl:value-of select="marc:subfield[@code='b']"/>
832
                    </xsl:with-param>
833
                </xsl:call-template>
834
        </xsl:if>
835
    </xsl:template>
836
837
    <xsl:template name="chopBrackets">
838
        <xsl:param name="chopString"></xsl:param>
839
        <xsl:variable name="string">
840
            <xsl:call-template name="chopPunctuation">
841
                <xsl:with-param name="chopString" select="$chopString"></xsl:with-param>
842
            </xsl:call-template>
843
        </xsl:variable>
844
        <xsl:if test="substring($string, 1,1)='['">
845
            <xsl:value-of select="substring($string,2, string-length($string)-2)"></xsl:value-of>
846
        </xsl:if>
847
        <xsl:if test="substring($string, 1,1)!='['">
848
            <xsl:value-of select="$string"></xsl:value-of>
849
        </xsl:if>
850
    </xsl:template>
851
852
</xsl:stylesheet>
(-)a/koha-tmpl/intranet-tmpl/prog/en/xslt/NORMARCslimUtils.xsl (-262 lines)
Lines 1-262 Link Here
1
<?xml version='1.0'?>
2
3
<!DOCTYPE stylesheet>
4
5
<xsl:stylesheet version="1.0"
6
  xmlns:marc="http://www.loc.gov/MARC21/slim"
7
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
8
  xmlns:str="http://exslt.org/strings">
9
	<xsl:template name="datafield">
10
		<xsl:param name="tag"/>
11
		<xsl:param name="ind1"><xsl:text> </xsl:text></xsl:param>
12
		<xsl:param name="ind2"><xsl:text> </xsl:text></xsl:param>
13
		<xsl:param name="subfields"/>
14
		<xsl:element name="datafield">
15
			<xsl:attribute name="tag">
16
				<xsl:value-of select="$tag"/>
17
			</xsl:attribute>
18
			<xsl:attribute name="ind1">
19
				<xsl:value-of select="$ind1"/>
20
			</xsl:attribute>
21
			<xsl:attribute name="ind2">
22
				<xsl:value-of select="$ind2"/>
23
			</xsl:attribute>
24
			<xsl:copy-of select="$subfields"/>
25
		</xsl:element>
26
	</xsl:template>
27
28
	<xsl:template name="subfieldSelect">
29
		<xsl:param name="codes"/>
30
		<xsl:param name="delimeter"><xsl:text> </xsl:text></xsl:param>
31
		<xsl:param name="subdivCodes"/>
32
		<xsl:param name="subdivDelimiter"/>
33
        <xsl:param name="prefix"/>
34
        <xsl:param name="suffix"/>
35
        <xsl:param name="urlencode"/>
36
		<xsl:variable name="str">
37
			<xsl:for-each select="marc:subfield">
38
				<xsl:if test="contains($codes, @code)">
39
                    <xsl:if test="contains($subdivCodes, @code)">
40
                        <xsl:value-of select="$subdivDelimiter"/>
41
                    </xsl:if>
42
					<xsl:value-of select="$prefix"/><xsl:value-of select="text()"/><xsl:value-of select="$suffix"/><xsl:value-of select="$delimeter"/>
43
				</xsl:if>
44
			</xsl:for-each>
45
		</xsl:variable>
46
        <xsl:choose>
47
            <xsl:when test="$urlencode=1">
48
                <xsl:value-of select="str:encode-uri(substring($str,1,string-length($str)-string-length($delimeter)), true())"/>
49
            </xsl:when>
50
            <xsl:otherwise>
51
                <xsl:value-of select="substring($str,1,string-length($str)-string-length($delimeter))"/>
52
            </xsl:otherwise>
53
        </xsl:choose>
54
	</xsl:template>
55
56
	<xsl:template name="buildSpaces">
57
		<xsl:param name="spaces"/>
58
		<xsl:param name="char"><xsl:text> </xsl:text></xsl:param>
59
		<xsl:if test="$spaces>0">
60
			<xsl:value-of select="$char"/>
61
			<xsl:call-template name="buildSpaces">
62
				<xsl:with-param name="spaces" select="$spaces - 1"/>
63
				<xsl:with-param name="char" select="$char"/>
64
			</xsl:call-template>
65
		</xsl:if>
66
	</xsl:template>
67
68
    <xsl:template name="buildBiblioDefaultViewURL">
69
        <xsl:param name="IntranetBiblioDefaultView"/>
70
        <xsl:choose>
71
            <xsl:when test="$IntranetBiblioDefaultView='normal'">
72
                <xsl:text>/cgi-bin/koha/catalogue/detail.pl?biblionumber=</xsl:text>
73
            </xsl:when>
74
            <xsl:when test="$IntranetBiblioDefaultView='isbd'">
75
                <xsl:text>/cgi-bin/koha/catalogue/ISBDdetail.pl?biblionumber=</xsl:text>
76
            </xsl:when>
77
            <xsl:when test="$IntranetBiblioDefaultView='labeled_marc'">
78
                <xsl:text>/cgi-bin/koha/catalogue/labeledMARCdetail.pl?biblionumber=</xsl:text>
79
            </xsl:when>
80
            <xsl:when test="$IntranetBiblioDefaultView='marc'">
81
                <xsl:text>/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=</xsl:text>
82
            </xsl:when>
83
            <xsl:otherwise>
84
                <xsl:text>/cgi-bin/koha/catalogue/detail.pl?biblionumber=</xsl:text>
85
            </xsl:otherwise>
86
        </xsl:choose>
87
    </xsl:template>
88
89
	<xsl:template name="chopPunctuation">
90
		<xsl:param name="chopString"/>
91
		<xsl:variable name="length" select="string-length($chopString)"/>
92
		<xsl:choose>
93
			<xsl:when test="$length=0"/>
94
			<xsl:when test="contains('.:,;/ ', substring($chopString,$length,1))">
95
				<xsl:call-template name="chopPunctuation">
96
					<xsl:with-param name="chopString" select="substring($chopString,1,$length - 1)"/>
97
				</xsl:call-template>
98
			</xsl:when>
99
			<xsl:when test="not($chopString)"/>
100
			<xsl:otherwise><xsl:value-of select="$chopString"/></xsl:otherwise>
101
		</xsl:choose>
102
<xsl:text> </xsl:text>
103
	</xsl:template>
104
105
	<!-- Function extractControlNumber is used to extract the control number (record number) from MARC tags 773/80/85 [etc.] subfield $w.
106
	     Parameter: control number string.
107
	     Assumes LOC convention: (OrgCode)recordNumber.
108
	     If OrgCode is not present, return full string.
109
	     Additionally, handle various brackets/parentheses. Chop leading and trailing spaces.
110
         Returns the value URI-encoded.
111
	-->
112
	<xsl:template name="extractControlNumber">
113
	    <xsl:param name="subfieldW"/>
114
	    <xsl:variable name="tranW" select="translate($subfieldW,']})&gt;','))))')"/>
115
	    <xsl:choose>
116
	      <xsl:when test="contains($tranW,')')">
117
	        <xsl:value-of select="str:encode-uri(normalize-space(translate(substring-after($tranW,')'),'[]{}()&lt;&gt;','')), true())"/>
118
	      </xsl:when>
119
	      <xsl:otherwise>
120
	        <xsl:value-of select="str:encode-uri(normalize-space($subfieldW), true())"/>
121
	      </xsl:otherwise>
122
	    </xsl:choose>
123
	</xsl:template>
124
125
<xsl:template name="nameABCDQ">
126
<xsl:call-template name="chopPunctuation">
127
<xsl:with-param name="chopString">
128
<xsl:call-template name="subfieldSelect">
129
<xsl:with-param name="codes">aq</xsl:with-param>
130
</xsl:call-template>
131
</xsl:with-param>
132
<xsl:with-param name="punctuation">
133
<xsl:text>:,;/ </xsl:text>
134
</xsl:with-param>
135
</xsl:call-template>
136
<xsl:call-template name="termsOfAddress"/>
137
</xsl:template>
138
139
<xsl:template name="nameABCDN">
140
<xsl:for-each select="marc:subfield[@code='a']">
141
<xsl:call-template name="chopPunctuation">
142
<xsl:with-param name="chopString" select="."/>
143
</xsl:call-template>
144
</xsl:for-each>
145
<xsl:for-each select="marc:subfield[@code='b']">
146
<xsl:value-of select="."/>
147
</xsl:for-each>
148
<xsl:if test="marc:subfield[@code='c'] or marc:subfield[@code='d'] or marc:subfield[@code='n']">
149
<xsl:call-template name="subfieldSelect">
150
<xsl:with-param name="codes">cdn</xsl:with-param>
151
</xsl:call-template>
152
</xsl:if>
153
</xsl:template>
154
155
<xsl:template name="nameACDEQ">
156
<xsl:call-template name="subfieldSelect">
157
<xsl:with-param name="codes">acdeq</xsl:with-param>
158
</xsl:call-template>
159
</xsl:template>
160
161
<xsl:template name="termsOfAddress">
162
<xsl:if test="marc:subfield[@code='b' or @code='c']">
163
<xsl:call-template name="chopPunctuation">
164
<xsl:with-param name="chopString">
165
<xsl:call-template name="subfieldSelect">
166
<xsl:with-param name="codes">bc</xsl:with-param>
167
</xsl:call-template>
168
</xsl:with-param>
169
</xsl:call-template>
170
</xsl:if>
171
</xsl:template>
172
173
    <!-- Function m880Select:  Display Alternate Graphic Representation (MARC 880) for selected latin "base"tags
174
        - should be called immediately before the corresonding latin tags are processed 
175
        - tags in right-to-left languages are displayed floating right
176
        * Parameter:
177
           + basetags: display these tags if found in linkage section ( subfield 6) of tag 880
178
           + codes: display these subfields codes
179
        * Options: 
180
            - class: wrap output in <span class="$class">...</span>
181
            - label: prefix each(!) tag with label $label
182
            - bibno: link to biblionumber $bibno
183
            - index: build a search link using index $index with subfield $a as key; if subfield $9 is present use index 'an' with key $9 instead.
184
         * Limitations:
185
            - displays every field on a separate line (to switch between rtl and ltr)
186
         * Pitfalls:
187
           (!) output might be empty
188
    -->
189
    <xsl:template name="m880Select">
190
         <xsl:param name="basetags"/> <!-- e.g.  100,700,110,710 -->
191
        <xsl:param name="codes"/> <!-- e.g. abc  -->
192
        <xsl:param name="class"/> <!-- e.g. results_summary -->
193
        <xsl:param name="label"/> <!-- e.g.  Edition -->
194
        <xsl:param name="bibno"/>
195
        <xsl:param name="index"/> <!-- e.g.  au -->
196
197
        <xsl:for-each select="marc:datafield[@tag=880]">
198
            <xsl:variable name="code6" select="marc:subfield[@code=6]"/>
199
            <xsl:if test="contains(string($basetags), substring($code6,1,3))">
200
                <span>
201
                    <xsl:if test="boolean($class)">
202
                        <xsl:attribute name="class"><xsl:value-of select="$class"/></xsl:attribute>
203
                    </xsl:if>
204
                    <xsl:choose>
205
                        <!-- display right-to-left tags floating right of their left-to-right counterparts -->
206
                        <xsl:when test="substring($code6,10,2) ='/r'">
207
                            <xsl:attribute name="style">display:block; text-align:right; float:right; width:50%; padding-left:20px</xsl:attribute>
208
                            <xsl:attribute name="dir">rtl</xsl:attribute>
209
                        </xsl:when>
210
                        <xsl:otherwise>
211
                            <xsl:attribute name="style">display:block; </xsl:attribute>
212
                        </xsl:otherwise>
213
                    </xsl:choose>
214
                    <xsl:if test="boolean($label)">
215
                        <span class="label">
216
                            <xsl:value-of select="$label"/>
217
                        </span>
218
                    </xsl:if>
219
                    <xsl:variable name="str">
220
                        <xsl:for-each select="marc:subfield">
221
                            <xsl:if test="contains($codes, @code)">
222
                                <xsl:value-of select="text()"/>
223
                                <xsl:text> </xsl:text>
224
                            </xsl:if>
225
                        </xsl:for-each>
226
                    </xsl:variable>
227
                    <xsl:choose>
228
                        <xsl:when test="boolean($bibno)">
229
                            <a>
230
                                <xsl:attribute name="href">/cgi-bin/koha/opac-detail.pl?biblionumber=<xsl:value-of  select="str:encode-uri($bibno, true())"/></xsl:attribute>
231
                                <xsl:value-of select="$str"/>
232
                            </a>
233
                        </xsl:when>
234
                       <xsl:when test="boolean($index) and boolean(marc:subfield[@code=9])">
235
                            <a>
236
                                <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=an:<xsl:value-of  select="str:encode-uri(marc:subfield[@code=9], true())"/></xsl:attribute>
237
                                  <xsl:value-of select="$str"/>
238
                            </a>
239
                        </xsl:when>
240
                        <xsl:when test="boolean($index)">
241
                            <a>
242
                                <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=<xsl:value-of  select="$index"/>:<xsl:value-of  select="str:encode-uri(marc:subfield[@code='a'], true())"/></xsl:attribute>
243
                                <xsl:value-of select="$str"/>
244
                            </a>
245
                        </xsl:when>
246
                        <xsl:otherwise>
247
                            <xsl:value-of select="$str"/>
248
                        </xsl:otherwise>
249
                    </xsl:choose>
250
                </span>
251
            </xsl:if>
252
        </xsl:for-each>
253
254
    </xsl:template>
255
256
</xsl:stylesheet>
257
258
<!-- Stylus Studio meta-information - (c)1998-2002 eXcelon Corp.
259
<metaInformation>
260
<scenarios/><MapperInfo srcSchemaPath="" srcSchemaRoot="" srcSchemaPathIsRelative="yes" srcSchemaInterpretAsXML="no" destSchemaPath="" destSchemaRoot="" destSchemaPathIsRelative="yes" destSchemaInterpretAsXML="no"/>
261
</metaInformation>
262
-->
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/NORMARCslim2OPACDetail.xsl (-758 lines)
Lines 1-758 Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
2
3
<!DOCTYPE stylesheet>
4
5
<!-- $Id: MARC21slim2DC.xsl,v 1.1 2003/01/06 08:20:27 adam Exp $ -->
6
<xsl:stylesheet version="1.0"
7
  xmlns:marc="http://www.loc.gov/MARC21/slim"
8
  xmlns:items="http://www.koha-community.org/items"
9
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
10
  xmlns:str="http://exslt.org/strings"
11
  exclude-result-prefixes="marc items str">
12
    <xsl:import href="NORMARCslimUtils.xsl"/>
13
    <xsl:output method = "html" indent="yes" omit-xml-declaration = "yes" encoding="UTF-8"/>
14
    <xsl:template match="/">
15
            <xsl:apply-templates/>
16
    </xsl:template>
17
18
    <xsl:template match="marc:record">
19
20
        <!-- Sysprefs -->
21
        <xsl:variable name="UseControlNumber" select="marc:sysprefs/marc:syspref[@name='UseControlNumber']"/>
22
        <xsl:variable name="SubjectModifier"><xsl:if test="marc:sysprefs/marc:syspref[@name='TraceCompleteSubfields']='1'">,complete-subfield</xsl:if></xsl:variable>
23
        <xsl:variable name="TraceSubjectSubdivisions" select="marc:sysprefs/marc:syspref[@name='TraceSubjectSubdivisions']"/>
24
        <xsl:variable name="TracingQuotesLeft">
25
          <xsl:choose>
26
            <xsl:when test="marc:sysprefs/marc:syspref[@name='UseICUStyleQuotes']='1'">{</xsl:when>
27
            <xsl:otherwise>"</xsl:otherwise>
28
          </xsl:choose>
29
        </xsl:variable>
30
        <xsl:variable name="TracingQuotesRight">
31
          <xsl:choose>
32
            <xsl:when test="marc:sysprefs/marc:syspref[@name='UseICUStyleQuotes']='1'">}</xsl:when>
33
            <xsl:otherwise>"</xsl:otherwise>
34
          </xsl:choose>
35
        </xsl:variable>
36
        <xsl:variable name="DisplayOPACiconsXSLT" select="marc:sysprefs/marc:syspref[@name='DisplayOPACiconsXSLT']"/>
37
        <xsl:variable name="theme" select="marc:sysprefs/marc:syspref[@name='opacthemes']"/>
38
        <xsl:variable name="OPACURLOpenInNewWindow" select="marc:sysprefs/marc:syspref[@name='OPACURLOpenInNewWindow']"/>
39
        <xsl:variable name="URLLinkText" select="marc:sysprefs/marc:syspref[@name='URLLinkText']"/>
40
        <xsl:variable name="Show856uAsImage" select="marc:sysprefs/marc:syspref[@name='OPACDisplay856uAsImage']"/>
41
        <xsl:variable name="OPACTrackClicks" select="marc:sysprefs/marc:syspref[@name='TrackClicks']"/>
42
        <xsl:variable name="leader" select="marc:leader"/>
43
        <xsl:variable name="leader6" select="substring($leader,7,1)"/>
44
        <xsl:variable name="leader7" select="substring($leader,8,1)"/>
45
        <xsl:variable name="biblionumber" select="marc:datafield[@tag=999]/marc:subfield[@code='c']"/>
46
        <xsl:variable name="controlField008" select="marc:controlfield[@tag=008]"/>
47
        <xsl:variable name="field019b" select="marc:datafield[@tag=019]/marc:subfield[@code='b']"/>
48
        <xsl:variable name="typeOf008">
49
            <!-- The logic here should be exactly the same for NORMARCslim2intranetDetail.xsl, NORMARCslim2intranetResults.xsl, NORMARCslim2OPACDetail.xsl and NORMARCslim2OPACResults.xsl -->
50
            <xsl:choose>
51
                <xsl:when test="$field019b='b' or $field019b='k' or $field019b='l' or $leader6='b'">Mon</xsl:when>
52
                <xsl:when test="$field019b='e' or contains($field019b,'ec') or contains($field019b,'ed') or contains($field019b,'ee') or contains($field019b,'ef') or $leader6='g'">FV</xsl:when>
53
                <xsl:when test="$field019b='c' or $field019b='d' or contains($field019b,'da') or contains($field019b,'db') or contains($field019b,'dc') or contains($field019b,'dd') or contains($field019b,'dg') or contains($field019b,'dh') or contains($field019b,'di') or contains($field019b,'dj') or contains($field019b,'dk') or $leader6='c' or $leader6='d' or $leader6='i' or $leader6='j'">Mus</xsl:when>
54
                <xsl:when test="$field019b='a' or contains($field019b,'ab') or contains($field019b,'aj') or $leader6='e' or $leader6='f'">Kar</xsl:when>
55
                <xsl:when test="$field019b='f' or $field019b='i' or contains($field019b,'ib') or contains($field019b,'ic') or contains($field019b,'fd') or contains($field019b,'ff') or contains($field019b,'fi') or $leader6='k'">gra</xsl:when>
56
                <xsl:when test="$field019b='g' or contains($field019b,'gb') or contains($field019b,'gd') or contains($field019b,'ge') or $leader6='m'">Fil</xsl:when>
57
                <xsl:when test="$leader6='o'">kom</xsl:when>
58
                <xsl:when test="$field019b='h' or $leader6='r'">trd</xsl:when>
59
                <xsl:when test="$field019b='j' or $leader6='a'">
60
                    <xsl:choose>
61
                        <xsl:when test="$leader7='a' or $leader7='c' or $leader7='m' or $leader7='p'">Mon</xsl:when>
62
                        <xsl:when test="$field019b='j' or $leader7='b' or $leader7='s'">Per</xsl:when>
63
                    </xsl:choose>
64
                </xsl:when>
65
            </xsl:choose>
66
        </xsl:variable>
67
68
        <!-- Tittel og ansvarsopplysninger -->
69
        <xsl:if test="marc:datafield[@tag=245]">
70
        <h2 class="title">
71
            <xsl:for-each select="marc:datafield[@tag=245]">
72
                    <xsl:call-template name="subfieldSelect">
73
                        <xsl:with-param name="codes">a</xsl:with-param>
74
                    </xsl:call-template>
75
                    <xsl:if test="marc:subfield[@code='h']">
76
                        <xsl:text> </xsl:text>
77
                        (<xsl:call-template name="subfieldSelect">
78
                            <xsl:with-param name="codes">h</xsl:with-param>
79
                        </xsl:call-template>)
80
                    </xsl:if>
81
                    <xsl:if test="marc:subfield[@code='b']">
82
                        <xsl:text> : </xsl:text>
83
                        <xsl:call-template name="subfieldSelect">
84
                            <xsl:with-param name="codes">b</xsl:with-param>
85
                        </xsl:call-template>
86
                    </xsl:if>
87
                    <xsl:text> </xsl:text>
88
                    <xsl:call-template name="subfieldSelect">
89
                        <xsl:with-param name="codes">np</xsl:with-param>
90
                    </xsl:call-template>
91
            </xsl:for-each>
92
        </h2>
93
        </xsl:if>
94
95
        <!-- Author Statement -->
96
		<!-- 245$9 is Koha authority number -->
97
        <xsl:choose>
98
        <xsl:when test="marc:datafield[@tag=100] or marc:datafield[@tag=110] or marc:datafield[@tag=111] or marc:datafield[@tag=700] or marc:datafield[@tag=710] or marc:datafield[@tag=711]">
99
        <h5 class="author">av
100
        <xsl:for-each select="marc:datafield[@tag=100 or @tag=700]">
101
        <a>
102
        <xsl:choose>
103
            <xsl:when test="marc:subfield[@code=9]">
104
                <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=an:<xsl:value-of select="str:encode-uri(marc:subfield[@code=9], true())"/></xsl:attribute>
105
            </xsl:when>
106
            <xsl:otherwise>
107
            <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=au:<xsl:value-of select="str:encode-uri(marc:subfield[@code='a'], true())"/></xsl:attribute>
108
            </xsl:otherwise>
109
        </xsl:choose>
110
        <xsl:call-template name="nameABCDQ"/></a>
111
        <xsl:if test="marc:subfield[@code=9]">
112
            <a class='authlink'>
113
                <xsl:attribute name="href">/cgi-bin/koha/opac-authoritiesdetail.pl?authid=<xsl:value-of select="str:encode-uri(marc:subfield[@code=9], true())"/></xsl:attribute>
114
                <xsl:element name="img">
115
                    <xsl:attribute name="src">/opac-tmpl/<xsl:value-of select="$theme"/>/images/filefind.png</xsl:attribute>
116
                    <xsl:attribute name="style">vertical-align:middle</xsl:attribute>
117
                    <xsl:attribute name="height">15</xsl:attribute>
118
                    <xsl:attribute name="width">15</xsl:attribute>
119
                </xsl:element>
120
            </a>
121
        </xsl:if>
122
        <xsl:choose>
123
        <xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
124
        </xsl:for-each>
125
126
        <xsl:for-each select="marc:datafield[@tag=110 or @tag=710]">
127
        <a>
128
        <xsl:choose>
129
            <xsl:when test="marc:subfield[@code=9]">
130
                <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=an:<xsl:value-of select="str:encode-uri(marc:subfield[@code=9], true())"/></xsl:attribute>
131
            </xsl:when>
132
            <xsl:otherwise>
133
            <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=au:<xsl:value-of select="str:encode-uri(marc:subfield[@code='a'], true())"/></xsl:attribute>
134
            </xsl:otherwise>
135
        </xsl:choose>
136
        <xsl:call-template name="nameABCDN"/></a>
137
        <xsl:if test="marc:subfield[@code=9]">
138
            <a class='authlink'>
139
                <xsl:attribute name="href">/cgi-bin/koha/opac-authoritiesdetail.pl?authid=<xsl:value-of select="str:encode-uri(marc:subfield[@code=9], true())"/></xsl:attribute>
140
                <xsl:element name="img">
141
                    <xsl:attribute name="src">/opac-tmpl/<xsl:value-of select="$theme"/>/images/filefind.png</xsl:attribute>
142
                    <xsl:attribute name="style">vertical-align:middle</xsl:attribute>
143
                    <xsl:attribute name="height">15</xsl:attribute>
144
                    <xsl:attribute name="width">15</xsl:attribute>
145
                </xsl:element>
146
            </a>
147
        </xsl:if>
148
        <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
149
        </xsl:for-each>
150
151
        <xsl:for-each select="marc:datafield[@tag=111 or @tag=711]">
152
        <a>
153
        <xsl:choose>
154
            <xsl:when test="marc:subfield[@code=9]">
155
                <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=an:<xsl:value-of select="str:encode-uri(marc:subfield[@code=9], true())"/></xsl:attribute>
156
            </xsl:when>
157
            <xsl:otherwise>
158
            <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=au:<xsl:value-of select="str:encode-uri(marc:subfield[@code='a'], true())"/></xsl:attribute>
159
            </xsl:otherwise>
160
        </xsl:choose>
161
        <xsl:call-template name="nameACDEQ"/></a>
162
        <xsl:if test="marc:subfield[@code=9]">
163
            <a class='authlink'>
164
                <xsl:attribute name="href">/cgi-bin/koha/opac-authoritiesdetail.pl?authid=<xsl:value-of select="str:encode-uri(marc:subfield[@code=9], true())"/></xsl:attribute>
165
                <xsl:element name="img">
166
                    <xsl:attribute name="src">/opac-tmpl/<xsl:value-of select="$theme"/>/images/filefind.png</xsl:attribute>
167
                    <xsl:attribute name="style">vertical-align:middle</xsl:attribute>
168
                    <xsl:attribute name="height">15</xsl:attribute>
169
                    <xsl:attribute name="width">15</xsl:attribute>
170
                </xsl:element>
171
            </a>
172
        </xsl:if>
173
        <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
174
175
        </xsl:for-each>
176
        </h5>
177
        </xsl:when>
178
        </xsl:choose>
179
180
    <xsl:if test="$DisplayOPACiconsXSLT!='0'">
181
        <xsl:if test="$typeOf008!=''">
182
        <span class="results_summary">
183
            <span class="label">Materialtype: </span>
184
            <xsl:choose>
185
                <xsl:when test="$typeOf008='Mon'"><img src="/opac-tmpl/lib/famfamfam/BK.png" alt="Bok" title="Bok"/> Bok</xsl:when>
186
                <xsl:when test="$typeOf008='Per'"><img src="/opac-tmpl/lib/famfamfam/AR.png" alt="Periodika" title="Periodika"/> Periodika</xsl:when>
187
                <xsl:when test="$typeOf008='Fil'"><img src="/opac-tmpl/lib/famfamfam/CF.png" alt="Fil" title="Fil"/> Fil</xsl:when>
188
                <xsl:when test="$typeOf008='Kar'"><img src="/opac-tmpl/lib/famfamfam/MP.png" alt="Kart" title="Kart"/> Kart</xsl:when>
189
                <xsl:when test="$typeOf008='FV'"><img  src="/opac-tmpl/lib/famfamfam/VM.png" alt="Film og video" title="Film og video"/> Film og video</xsl:when>
190
                <xsl:when test="$typeOf008='Mus'"><img src="/opac-tmpl/lib/famfamfam/PR.png" alt="Musikktrykk og lydopptak" title="Musikktrykk og lydopptak"/> Musikk</xsl:when>
191
                <xsl:when test="$typeOf008='gra'"><img src="/opac-tmpl/lib/famfamfam/GR.png" alt="Grafisk materiale" title="Grafisk materiale"/> Grafisk materiale</xsl:when>
192
                <xsl:when test="$typeOf008='kom'"><img src="/opac-tmpl/lib/famfamfam/MX.png" alt="Kombidokumenter" title="Kombidokumenter"/> Kombidokumenter</xsl:when>
193
                <xsl:when test="$typeOf008='trd'"><img src="/opac-tmpl/lib/famfamfam/TD.png" alt="Tre-dimensjonale gjenstander" title="Tre-dimensjonale gjenstander"/> Tre-dimensjonale gjenstander</xsl:when>
194
            </xsl:choose>
195
        </span>
196
        </xsl:if>
197
    </xsl:if>
198
199
        <!--Series -->
200
        <xsl:if test="marc:datafield[@tag=440 or @tag=490]">
201
	        <span class="results_summary"><span class="label">Series: </span>
202
	        <xsl:for-each select="marc:datafield[@tag=440]">
203
	            <a>
204
                    <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=se:<xsl:value-of select="str:encode-uri(marc:subfield[@code='a'], true())"/></xsl:attribute>
205
	                <xsl:call-template name="chopPunctuation">
206
	                            <xsl:with-param name="chopString">
207
	                                <xsl:call-template name="subfieldSelect">
208
	                                    <xsl:with-param name="codes">av</xsl:with-param>
209
	                                </xsl:call-template>
210
	                            </xsl:with-param>
211
	                        </xsl:call-template>
212
				</a>
213
	                    <xsl:text> </xsl:text><xsl:call-template name="part"/>
214
	            <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
215
	        </xsl:for-each>
216
217
	        <xsl:for-each select="marc:datafield[@tag=490][@ind1=0]">
218
	            <a>
219
                    <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=se:<xsl:value-of select="str:encode-uri(marc:subfield[@code='a'], true())"/></xsl:attribute>
220
	                        <xsl:call-template name="chopPunctuation">
221
	                            <xsl:with-param name="chopString">
222
	                                <xsl:call-template name="subfieldSelect">
223
	                                    <xsl:with-param name="codes">av</xsl:with-param>
224
	                                </xsl:call-template>
225
	                            </xsl:with-param>
226
	                        </xsl:call-template>
227
	            </a>
228
	                    <xsl:call-template name="part"/>
229
	        <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
230
	        </xsl:for-each>
231
	        </span>
232
        </xsl:if>
233
234
        <!-- Analytics -->
235
        <xsl:if test="$leader7='s' or $leader7='c'">
236
        <span class="results_summary analytics"><span class="label">Analytics: </span>
237
            <a>
238
            <xsl:choose>
239
            <xsl:when test="$UseControlNumber = '1' and marc:controlfield[@tag=001]">
240
                <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=rcn:<xsl:value-of select="str:encode-uri(marc:controlfield[@tag=001], true())"/>+and+(bib-level:a+or+bib-level:b)</xsl:attribute>
241
            </xsl:when>
242
            <xsl:otherwise>
243
                <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=Host-item:<xsl:value-of select="str:encode-uri(translate(marc:datafield[@tag=245]/marc:subfield[@code='a'], '/', ''), true())"/></xsl:attribute>
244
            </xsl:otherwise>
245
            </xsl:choose>
246
            <xsl:text>Show analytics</xsl:text>
247
            </a>
248
        </span>
249
        </xsl:if>
250
251
        <!-- 773 - Links from child to parent -->
252
        <xsl:if test="marc:datafield[@tag=773]">
253
        <xsl:for-each select="marc:datafield[@tag=773]">
254
        <xsl:if test="@ind1=0">
255
        <span class="results_summary in"><span class="label">
256
        <xsl:choose>
257
        <xsl:when test="@ind2=' '">
258
            In:
259
        </xsl:when>
260
        <xsl:when test="@ind2=8">
261
            <xsl:if test="marc:subfield[@code='i']">
262
                <xsl:value-of select="marc:subfield[@code='i']"/>
263
            </xsl:if>
264
        </xsl:when>
265
        </xsl:choose>
266
        </span>
267
                <xsl:variable name="f773">
268
                    <xsl:call-template name="chopPunctuation"><xsl:with-param name="chopString"><xsl:call-template name="subfieldSelect">
269
                        <xsl:with-param name="codes">a_t</xsl:with-param>
270
                    </xsl:call-template></xsl:with-param></xsl:call-template>
271
                </xsl:variable>
272
            <xsl:choose>
273
                <xsl:when test="$UseControlNumber = '1' and marc:subfield[@code='w']">
274
                    <a><xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=Control-number:<xsl:call-template name="extractControlNumber"><xsl:with-param name="subfieldW" select="marc:subfield[@code='w']"/></xsl:call-template></xsl:attribute>
275
                        <xsl:value-of select="translate($f773, '()', '')"/>
276
                    </a>
277
                    <xsl:if test="marc:subfield[@code='g']"><xsl:text> </xsl:text><xsl:value-of select="marc:subfield[@code='g']"/></xsl:if>
278
                </xsl:when>
279
                <xsl:when test="marc:subfield[@code='0']">
280
                    <a><xsl:attribute name="href">/cgi-bin/koha/opac-detail.pl?biblionumber=<xsl:value-of select="str:encode-uri(marc:subfield[@code='0'], true())"/></xsl:attribute>
281
                        <xsl:value-of select="$f773"/>
282
                    </a>
283
                </xsl:when>
284
                <xsl:otherwise>
285
                    <a><xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=ti,phr:<xsl:value-of select="str:encode-uri(translate($f773, '()', ''), true())"/></xsl:attribute>
286
                        <xsl:value-of select="$f773"/>
287
                    </a>
288
                    <xsl:if test="marc:subfield[@code='g']"><xsl:text> </xsl:text><xsl:value-of select="marc:subfield[@code='g']"/></xsl:if>
289
                </xsl:otherwise>
290
            </xsl:choose>
291
        </span>
292
        <xsl:if test="marc:subfield[@code='n']">
293
            <span class="results_summary"><xsl:value-of select="marc:subfield[@code='n']"/></span>
294
        </xsl:if>
295
        </xsl:if>
296
        </xsl:for-each>
297
        </xsl:if>
298
299
        <!-- Publisher Statement -->
300
301
        <xsl:if test="marc:datafield[@tag=260]">
302
        <span class="results_summary"><span class="label">Utgiver: </span>
303
            <xsl:for-each select="marc:datafield[@tag=260]">
304
                <xsl:call-template name="chopPunctuation">
305
                  <xsl:with-param name="chopString">
306
                    <xsl:call-template name="subfieldSelect">
307
                        <xsl:with-param name="codes">bcg</xsl:with-param>
308
                    </xsl:call-template>
309
                   </xsl:with-param>
310
               </xsl:call-template>
311
                    <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
312
            </xsl:for-each>
313
        </span>
314
        </xsl:if>
315
316
        <!-- Edition Statement -->
317
318
        <xsl:if test="marc:datafield[@tag=250]">
319
        <span class="results_summary"><span class="label">Utgave: </span>
320
            <xsl:for-each select="marc:datafield[@tag=250]">
321
                <xsl:call-template name="chopPunctuation">
322
                  <xsl:with-param name="chopString">
323
                    <xsl:call-template name="subfieldSelect">
324
                        <xsl:with-param name="codes">ab</xsl:with-param>
325
                    </xsl:call-template>
326
                   </xsl:with-param>
327
               </xsl:call-template>
328
                    <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
329
            </xsl:for-each>
330
        </span>
331
        </xsl:if>
332
333
        <!-- Description -->
334
335
        <xsl:if test="marc:datafield[@tag=300]">
336
        <span class="results_summary"><span class="label">Beskrivelse: </span>
337
            <xsl:for-each select="marc:datafield[@tag=300]">
338
                <xsl:call-template name="chopPunctuation">
339
                  <xsl:with-param name="chopString">
340
                    <xsl:call-template name="subfieldSelect">
341
                        <xsl:with-param name="codes">abceg</xsl:with-param>
342
                    </xsl:call-template>
343
                   </xsl:with-param>
344
               </xsl:call-template>
345
                    <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
346
            </xsl:for-each>
347
        </span>
348
       </xsl:if>
349
350
       <abbr class="unapi-id" title="koha:biblionumber:{marc:datafield[@tag=999]/marc:subfield[@code='c']}" ><!-- unAPI --></abbr>
351
352
        <!-- Build ISBN -->
353
        <xsl:if test="marc:datafield[@tag=020]/marc:subfield[@code='a']">
354
          <span class="results_summary isbn"><span class="label">ISBN: </span>
355
            <xsl:for-each select="marc:datafield[@tag=020]/marc:subfield[@code='a']">
356
              <span property="isbn">
357
                <xsl:value-of select="."/>
358
                <xsl:choose>
359
                  <xsl:when test="position()=last()">
360
                    <xsl:text>.</xsl:text>
361
                  </xsl:when>
362
                  <xsl:otherwise>
363
                    <xsl:text>; </xsl:text>
364
                  </xsl:otherwise>
365
                </xsl:choose>
366
              </span>
367
            </xsl:for-each>
368
          </span>
369
        </xsl:if>
370
371
        <!-- Build ISSN -->
372
        <xsl:if test="marc:datafield[@tag=022]/marc:subfield[@code='a']">
373
          <span class="results_summary issn"><span class="label">ISSN: </span>
374
            <xsl:for-each select="marc:datafield[@tag=022]/marc:subfield[@code='a']">
375
              <span property="issn">
376
                <xsl:value-of select="."/>
377
                <xsl:choose>
378
                  <xsl:when test="position()=last()">
379
                    <xsl:text>.</xsl:text>
380
                  </xsl:when>
381
                  <xsl:otherwise>
382
                    <xsl:text>; </xsl:text>
383
                  </xsl:otherwise>
384
                </xsl:choose>
385
              </span>
386
            </xsl:for-each>
387
          </span>
388
        </xsl:if>
389
390
        <!-- Other Title  Statement -->
391
392
        <xsl:if test="marc:datafield[@tag=246]">
393
        <span class="results_summary"><span class="label">Parallelltittel: </span>
394
            <xsl:for-each select="marc:datafield[@tag=246]">
395
                <xsl:call-template name="chopPunctuation">
396
                  <xsl:with-param name="chopString">
397
                    <xsl:call-template name="subfieldSelect">
398
                        <xsl:with-param name="codes">abhfgnp</xsl:with-param>
399
                    </xsl:call-template>
400
                   </xsl:with-param>
401
               </xsl:call-template>
402
                    <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
403
            </xsl:for-each>
404
        </span>
405
       </xsl:if>
406
407
        <!-- Uniform Title  Statement -->
408
409
        <xsl:if test="marc:datafield[@tag=130]|marc:datafield[@tag=240]|marc:datafield[@tag=730][@ind2!=2]">
410
        <span class="results_summary"><span class="label">Standardtittel: </span>
411
        <xsl:for-each select="marc:datafield[@tag=130]|marc:datafield[@tag=240]|marc:datafield[@tag=730][@ind2!=2]">
412
            <xsl:variable name="str">
413
                <xsl:for-each select="marc:subfield">
414
                    <xsl:if test="(contains('adfklmor',@code) and (not(../marc:subfield[@code='n' or @code='p']) or (following-sibling::marc:subfield[@code='n' or @code='p'])))">
415
                        <xsl:value-of select="text()"/>
416
                        <xsl:text> </xsl:text>
417
                     </xsl:if>
418
                </xsl:for-each>
419
            </xsl:variable>
420
            <xsl:call-template name="chopPunctuation">
421
                <xsl:with-param name="chopString">
422
                    <xsl:value-of select="substring($str,1,string-length($str)-1)"/>
423
424
                </xsl:with-param>
425
            </xsl:call-template>
426
            <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
427
        </xsl:for-each>
428
        </span>
429
        </xsl:if>
430
431
        <!-- Subjects -->
432
433
        <xsl:if test="marc:datafield[substring(@tag, 1, 1) = '6']">
434
            <span class="results_summary subjects"><span class="label">Emne(r): </span>
435
            <xsl:for-each select="marc:datafield[substring(@tag, 1, 1) = '6']">
436
            <a>
437
            <xsl:choose>
438
            <!-- Will implement this later
439
                <xsl:when test="marc:subfield[@code=9] and $UseAuthoritiesForTracings='1'">
440
                    <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=an:<xsl:value-of select="str:encode-uri(marc:subfield[@code=9], true())"/></xsl:attribute>
441
                </xsl:when>
442
            -->
443
            <xsl:when test="$TraceSubjectSubdivisions='1'">
444
                <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=<xsl:call-template name="subfieldSelect">
445
                        <xsl:with-param name="codes">abcdvxyz</xsl:with-param>
446
                        <xsl:with-param name="delimeter"> AND </xsl:with-param>
447
                        <xsl:with-param name="prefix">(su<xsl:value-of select="$SubjectModifier"/>:<xsl:value-of select="$TracingQuotesLeft"/></xsl:with-param>
448
                        <xsl:with-param name="suffix"><xsl:value-of select="$TracingQuotesRight"/>)</xsl:with-param>
449
                    </xsl:call-template>
450
                </xsl:attribute>
451
            </xsl:when>
452
            <xsl:otherwise>
453
                <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=su<xsl:value-of select="$SubjectModifier"/>:<xsl:value-of select="$TracingQuotesLeft"/><xsl:value-of select="str:encode-uri(marc:subfield[@code='a'], true())"/><xsl:value-of select="$TracingQuotesRight"/></xsl:attribute>
454
            </xsl:otherwise>
455
            </xsl:choose>
456
            <xsl:call-template name="chopPunctuation">
457
                <xsl:with-param name="chopString">
458
                    <xsl:call-template name="subfieldSelect">
459
                        <xsl:with-param name="codes">abcdvxyz</xsl:with-param>
460
                        <xsl:with-param name="subdivCodes">vxyz</xsl:with-param>
461
                        <xsl:with-param name="subdivDelimiter">-- </xsl:with-param>
462
                    </xsl:call-template>
463
                </xsl:with-param>
464
            </xsl:call-template>
465
            </a>
466
            <xsl:if test="marc:subfield[@code=9]">
467
                <a class='authlink'>
468
                    <xsl:attribute name="href">/cgi-bin/koha/opac-authoritiesdetail.pl?authid=<xsl:value-of select="str:encode-uri(marc:subfield[@code=9], true())"/></xsl:attribute>
469
                    <xsl:element name="img">
470
                        <xsl:attribute name="src">/opac-tmpl/<xsl:value-of select="$theme"/>/images/filefind.png</xsl:attribute>
471
                        <xsl:attribute name="style">vertical-align:middle</xsl:attribute>
472
                        <xsl:attribute name="height">15</xsl:attribute>
473
                        <xsl:attribute name="width">15</xsl:attribute>
474
                    </xsl:element>
475
                </a>
476
            </xsl:if>
477
            <xsl:choose>
478
            <xsl:when test="position()=last()"></xsl:when>
479
            <xsl:otherwise> | </xsl:otherwise>
480
            </xsl:choose>
481
482
            </xsl:for-each>
483
            </span>
484
        </xsl:if>
485
486
<!-- Image processing code added here, takes precedence over text links including y3z text   -->
487
        <xsl:if test="marc:datafield[@tag=856]">
488
        <span class="results_summary online_resources"><span class="label">Online resources: </span>
489
        <xsl:for-each select="marc:datafield[@tag=856]">
490
            <xsl:variable name="SubqText"><xsl:value-of select="marc:subfield[@code='q']"/></xsl:variable>
491
	    <a property="url">
492
	    <xsl:choose>
493
	      <xsl:when test="$OPACTrackClicks='track'">
494
            <xsl:attribute name="href">/cgi-bin/koha/tracklinks.pl?uri=<xsl:value-of select="str:encode-uri(marc:subfield[@code='u'], true())"/>&amp;biblionumber=<xsl:value-of select="$biblionumber"/></xsl:attribute>
495
	      </xsl:when>
496
	      <xsl:when test="$OPACTrackClicks='anonymous'">
497
            <xsl:attribute name="href">/cgi-bin/koha/tracklinks.pl?uri=<xsl:value-of select="str:encode-uri(marc:subfield[@code='u'], true())"/>&amp;biblionumber=<xsl:value-of select="$biblionumber"/></xsl:attribute>
498
	      </xsl:when>
499
	      <xsl:otherwise>
500
                <xsl:attribute name="href"><xsl:value-of select="marc:subfield[@code='u']"/></xsl:attribute>
501
	      </xsl:otherwise>
502
	    </xsl:choose>
503
            <xsl:if test="$OPACURLOpenInNewWindow='1'">
504
                <xsl:attribute name="target">_blank</xsl:attribute>
505
            </xsl:if>
506
            <xsl:choose>
507
            <xsl:when test="($Show856uAsImage='Details' or $Show856uAsImage='Both') and (substring($SubqText,1,6)='image/' or $SubqText='img' or $SubqText='bmp' or $SubqText='cod' or $SubqText='gif' or $SubqText='ief' or $SubqText='jpe' or $SubqText='jpeg' or $SubqText='jpg' or $SubqText='jfif' or $SubqText='png' or $SubqText='svg' or $SubqText='tif' or $SubqText='tiff' or $SubqText='ras' or $SubqText='cmx' or $SubqText='ico' or $SubqText='pnm' or $SubqText='pbm' or $SubqText='pgm' or $SubqText='ppm' or $SubqText='rgb' or $SubqText='xbm' or $SubqText='xpm' or $SubqText='xwd')">
508
                <xsl:element name="img"><xsl:attribute name="src"><xsl:value-of select="marc:subfield[@code='u']"/></xsl:attribute><xsl:attribute name="alt"><xsl:value-of select="marc:subfield[@code='y']"/></xsl:attribute><xsl:attribute name="style">height:100px</xsl:attribute></xsl:element><xsl:text></xsl:text>
509
            </xsl:when>
510
            <xsl:when test="marc:subfield[@code='y' or @code='3' or @code='z']">
511
                <xsl:call-template name="subfieldSelect">
512
                    <xsl:with-param name="codes">y3z</xsl:with-param>
513
                </xsl:call-template>
514
            </xsl:when>
515
            <xsl:when test="$URLLinkText!=''">
516
                <xsl:value-of select="$URLLinkText"/>
517
            </xsl:when>
518
            <xsl:otherwise>
519
                <xsl:text>Click here to access online</xsl:text>
520
            </xsl:otherwise>
521
            </xsl:choose>
522
            </a>
523
            <xsl:choose>
524
            <xsl:when test="position()=last()"><xsl:text>  </xsl:text></xsl:when>
525
            <xsl:otherwise> | </xsl:otherwise>
526
            </xsl:choose>
527
        </xsl:for-each>
528
        </span>
529
        </xsl:if>
530
531
        <!-- NORMARC does not define indicators for 505
532
        <xsl:if test="marc:datafield[@tag=505]">
533
        <xsl:for-each select="marc:datafield[@tag=505]">
534
        <span class="results_summary"><span class="label">
535
        <xsl:choose>
536
        <xsl:when test="@ind1=0">
537
            Contents:
538
        </xsl:when>
539
        <xsl:when test="@ind1=1">
540
            Incomplete contents:
541
        </xsl:when>
542
        <xsl:when test="@ind1=1">
543
            Partial contents:
544
        </xsl:when>
545
        </xsl:choose>
546
        </span>
547
        <xsl:choose>
548
        <xsl:when test="@ind2=0">
549
            <xsl:for-each select="marc:subfield[@code='t']">
550
                <xsl:value-of select="marc:subfield[@code=t]"/> <xsl:value-of select="marc:subfield[@code=r]"/>
551
            </xsl:for-each>
552
        </xsl:when>
553
        <xsl:otherwise>
554
            <xsl:call-template name="subfieldSelect">
555
                <xsl:with-param name="codes">au</xsl:with-param>
556
            </xsl:call-template>
557
        </xsl:otherwise>
558
        </xsl:choose>
559
        </span>
560
        </xsl:for-each>
561
        </xsl:if>
562
        -->
563
        <xsl:if test="marc:datafield[@tag=505]">
564
	        <xsl:call-template name="subfieldSelect">
565
                <xsl:with-param name="codes">a</xsl:with-param>
566
            </xsl:call-template>
567
		</xsl:if>
568
569
        <!-- 780 -->
570
        <xsl:if test="marc:datafield[@tag=780]">
571
        <xsl:for-each select="marc:datafield[@tag=780]">
572
        <span class="results_summary"><span class="label">
573
        <xsl:choose>
574
	        <xsl:when test="@ind2=0">
575
	            Fortsettelse av:
576
	        </xsl:when>
577
	        <xsl:when test="@ind2=1">
578
	            Delvis fortsettelse av:
579
	        </xsl:when>
580
	        <xsl:when test="@ind2=2">
581
	            Avløser:
582
	        </xsl:when>
583
	        <xsl:when test="@ind2=3">
584
	            Avløser delvis:
585
	        </xsl:when>
586
	        <xsl:when test="@ind2=4">
587
	            Sammenslåing av: ... ; og ...
588
	        </xsl:when>
589
	        <xsl:when test="@ind2=5">
590
	            Har tatt opp:
591
	        </xsl:when>
592
	        <xsl:when test="@ind2=6">
593
	            Har delvis tatt opp:
594
	        </xsl:when>
595
	        <xsl:when test="@ind2=7">
596
	            Utskilt fra:
597
	        </xsl:when>
598
        </xsl:choose>
599
        </span>
600
                <xsl:variable name="f780">
601
                    <xsl:call-template name="subfieldSelect">
602
                        <xsl:with-param name="codes">a_t</xsl:with-param>
603
                    </xsl:call-template>
604
                </xsl:variable>
605
             <a><xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=<xsl:value-of select="str:encode-uri(translate($f780, '()', ''), true())"/></xsl:attribute>
606
                <xsl:value-of select="translate($f780, '()', '')"/>
607
            </a>
608
        </span>
609
610
        <xsl:choose>
611
        <xsl:when test="@ind1=0">
612
            <span class="results_summary"><xsl:value-of select="marc:subfield[@code='n']"/></span>
613
        </xsl:when>
614
        </xsl:choose>
615
616
        </xsl:for-each>
617
        </xsl:if>
618
619
        <!-- 785 -->
620
        <xsl:if test="marc:datafield[@tag=785]">
621
        <xsl:for-each select="marc:datafield[@tag=785]">
622
        <span class="results_summary"><span class="label">
623
        <xsl:choose>
624
	        <xsl:when test="@ind2=0">
625
	            Fortsettelse i:
626
	        </xsl:when>
627
	        <xsl:when test="@ind2=1">
628
	            Fortsettes delvis i:
629
	        </xsl:when>
630
	        <xsl:when test="@ind2=2">
631
	            Avløst av:
632
	        </xsl:when>
633
	        <xsl:when test="@ind2=3">
634
	            Delvsi avløst av:
635
	        </xsl:when>
636
	        <xsl:when test="@ind2=4">
637
	            GÃ¥tt inn i:
638
	        </xsl:when>
639
	        <xsl:when test="@ind2=5">
640
	            Delvis gått inn i:
641
	        </xsl:when>
642
	        <xsl:when test="@ind2=6">
643
	            Fortsettes av: ...; og ...
644
	        </xsl:when>
645
	        <xsl:when test="@ind2=7">
646
			Slått sammen med: .., til: ...
647
	        </xsl:when>
648
        </xsl:choose>
649
        </span>
650
                   <xsl:variable name="f785">
651
                    <xsl:call-template name="subfieldSelect">
652
                        <xsl:with-param name="codes">a_t</xsl:with-param>
653
                    </xsl:call-template>
654
                </xsl:variable>
655
656
                <a><xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=<xsl:value-of select="str:encode-uri(translate($f785, '()', ''), true())"/></xsl:attribute>
657
                <xsl:value-of select="translate($f785, '()', '')"/>
658
            </a>
659
660
        </span>
661
        </xsl:for-each>
662
        </xsl:if>
663
664
        <xsl:variable name="OPACShowMusicalInscripts" select="marc:sysprefs/marc:syspref[@name='OPACShowMusicalInscripts']" />
665
        <xsl:variable name="OPACPlayMusicalInscripts" select="marc:sysprefs/marc:syspref[@name='OPACPlayMusicalInscripts']" />
666
667
        <xsl:if test="$OPACShowMusicalInscripts and marc:datafield[@tag=031]">
668
            <xsl:for-each select="marc:datafield[@tag=031]">
669
670
                <span class="results_summary musical_inscripts">
671
                    <xsl:if test="marc:subfield[@code='u']">
672
                        <span class="uri">
673
                            <a>
674
                                <xsl:attribute name="href">
675
                                    <xsl:value-of select="marc:subfield[@code='u']"/>
676
                                </xsl:attribute>
677
                                <xsl:text>Audio file</xsl:text>
678
                            </a>
679
                        </span>
680
                    </xsl:if>
681
                    <xsl:if test="marc:subfield[@code='2'] and marc:subfield[@code='2']/text() = 'pe' and marc:subfield[@code='g'] and marc:subfield[@code='n'] and marc:subfield[@code='o'] and marc:subfield[@code='p']">
682
                        <div class="inscript" data-system="pae">
683
                            <xsl:attribute name="data-clef">
684
                                <xsl:value-of select="marc:subfield[@code='g']"/>
685
                            </xsl:attribute>
686
                            <xsl:attribute name="data-keysig">
687
                                <xsl:value-of select="marc:subfield[@code='n']"/>
688
                            </xsl:attribute>
689
                            <xsl:attribute name="data-timesig">
690
                                <xsl:value-of select="marc:subfield[@code='o']"/>
691
                            </xsl:attribute>
692
                            <xsl:attribute name="data-notation">
693
                                <xsl:value-of select="marc:subfield[@code='p']"/>
694
                            </xsl:attribute>
695
                        </div>
696
                        <xsl:if test="$OPACPlayMusicalInscripts = 1">
697
                            <div class="audio_controls">
698
                                <button class="btn play_btn">
699
                                    <i id="carticon" class="fa fa-play"></i>
700
                                    <xsl:text> Play this sample</xsl:text>
701
                                </button>
702
                            </div>
703
                        </xsl:if>
704
                    </xsl:if>
705
                </span>
706
            </xsl:for-each>
707
            <xsl:if test="$OPACPlayMusicalInscripts = 1">
708
                <div class="results_summary">
709
                    <span class="inscript_audio hide"></span>
710
                </div>
711
            </xsl:if>
712
        </xsl:if>
713
714
    </xsl:template>
715
716
    <xsl:template name="part">
717
        <xsl:variable name="partNumber">
718
            <xsl:call-template name="specialSubfieldSelect">
719
                <xsl:with-param name="axis">n</xsl:with-param>
720
                <xsl:with-param name="anyCodes">n</xsl:with-param>
721
                <xsl:with-param name="afterCodes">fghkdlmor</xsl:with-param>
722
            </xsl:call-template>
723
        </xsl:variable>
724
        <xsl:variable name="partName">
725
            <xsl:call-template name="specialSubfieldSelect">
726
                <xsl:with-param name="axis">p</xsl:with-param>
727
                <xsl:with-param name="anyCodes">p</xsl:with-param>
728
                <xsl:with-param name="afterCodes">fghkdlmor</xsl:with-param>
729
            </xsl:call-template>
730
        </xsl:variable>
731
        <xsl:if test="string-length(normalize-space($partNumber))">
732
                <xsl:call-template name="chopPunctuation">
733
                    <xsl:with-param name="chopString" select="$partNumber"/>
734
                </xsl:call-template>
735
        </xsl:if>
736
        <xsl:if test="string-length(normalize-space($partName))">
737
                <xsl:call-template name="chopPunctuation">
738
                    <xsl:with-param name="chopString" select="$partName"/>
739
                </xsl:call-template>
740
        </xsl:if>
741
    </xsl:template>
742
743
    <xsl:template name="specialSubfieldSelect">
744
        <xsl:param name="anyCodes"/>
745
        <xsl:param name="axis"/>
746
        <xsl:param name="beforeCodes"/>
747
        <xsl:param name="afterCodes"/>
748
        <xsl:variable name="str">
749
            <xsl:for-each select="marc:subfield">
750
                <xsl:if test="contains($anyCodes, @code)      or (contains($beforeCodes,@code) and following-sibling::marc:subfield[@code=$axis])      or (contains($afterCodes,@code) and preceding-sibling::marc:subfield[@code=$axis])">
751
                    <xsl:value-of select="text()"/>
752
                    <xsl:text> </xsl:text>
753
                </xsl:if>
754
            </xsl:for-each>
755
        </xsl:variable>
756
        <xsl:value-of select="substring($str,1,string-length($str)-1)"/>
757
    </xsl:template>
758
</xsl:stylesheet>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/NORMARCslim2OPACResults.xsl (-1020 lines)
Lines 1-1020 Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
2
3
<!DOCTYPE stylesheet>
4
5
<!-- $Id: MARC21slim2DC.xsl,v 1.1 2003/01/06 08:20:27 adam Exp $ -->
6
<xsl:stylesheet version="1.0"
7
  xmlns:marc="http://www.loc.gov/MARC21/slim"
8
  xmlns:items="http://www.koha-community.org/items"
9
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
10
  xmlns:str="http://exslt.org/strings"
11
  exclude-result-prefixes="marc items str">
12
    <xsl:import href="NORMARCslimUtils.xsl"/>
13
    <xsl:output method = "html" indent="yes" omit-xml-declaration = "yes" encoding="UTF-8"/>
14
    <xsl:key name="item-by-status" match="items:item" use="items:status"/>
15
    <xsl:key name="item-by-status-and-branch" match="items:item" use="concat(items:status, ' ', items:homebranch)"/>
16
17
    <xsl:template match="/">
18
            <xsl:apply-templates/>
19
    </xsl:template>
20
    <xsl:template match="marc:record">
21
22
    <!-- System preferences -->
23
    <xsl:variable name="BiblioDefaultView" select="marc:sysprefs/marc:syspref[@name='BiblioDefaultView']"/>
24
    <xsl:variable name="UseControlNumber" select="marc:sysprefs/marc:syspref[@name='UseControlNumber']"/>
25
    <xsl:variable name="DisplayOPACiconsXSLT" select="marc:sysprefs/marc:syspref[@name='DisplayOPACiconsXSLT']"/>
26
    <xsl:variable name="singleBranchMode" select="marc:sysprefs/marc:syspref[@name='singleBranchMode']"/>
27
    <xsl:variable name="OPACTrackClicks" select="marc:sysprefs/marc:syspref[@name='TrackClicks']"/>
28
    <xsl:variable name="OPACURLOpenInNewWindow" select="marc:sysprefs/marc:syspref[@name='OPACURLOpenInNewWindow']"/>
29
    <xsl:variable name="URLLinkText" select="marc:sysprefs/marc:syspref[@name='URLLinkText']"/>
30
    <xsl:variable name="Show856uAsImage" select="marc:sysprefs/marc:syspref[@name='OPACDisplay856uAsImage']"/>
31
32
        <xsl:variable name="leader" select="marc:leader"/>
33
        <xsl:variable name="leader6" select="substring($leader,7,1)"/>
34
        <xsl:variable name="leader7" select="substring($leader,8,1)"/>
35
        <xsl:variable name="biblionumber" select="marc:datafield[@tag=999]/marc:subfield[@code='c']"/>
36
        <xsl:variable name="isbn" select="marc:datafield[@tag=020]/marc:subfield[@code='a']"/>
37
        <xsl:variable name="controlField007" select="marc:controlfield[@tag=007]"/>
38
        <xsl:variable name="controlField007-00" select="substring($controlField007,1,1)"/>
39
        <xsl:variable name="controlField007-01" select="substring($controlField007,2,1)"/>
40
        <xsl:variable name="controlField008" select="marc:controlfield[@tag=008]"/>
41
        <xsl:variable name="field019b" select="marc:datafield[@tag=019]/marc:subfield[@code='b']"/>
42
        <xsl:variable name="typeOf008">
43
            <!-- The logic here should be exactly the same for NORMARCslim2intranetDetail.xsl, NORMARCslim2intranetResults.xsl, NORMARCslim2OPACDetail.xsl and NORMARCslim2OPACResults.xsl -->
44
            <xsl:choose>
45
                <xsl:when test="$field019b='b' or $field019b='k' or $field019b='l' or $leader6='b'">Mon</xsl:when>
46
                <xsl:when test="$field019b='e' or contains($field019b,'ec') or contains($field019b,'ed') or contains($field019b,'ee') or contains($field019b,'ef') or $leader6='g'">FV</xsl:when>
47
                <xsl:when test="$field019b='c' or $field019b='d' or contains($field019b,'da') or contains($field019b,'db') or contains($field019b,'dc') or contains($field019b,'dd') or contains($field019b,'dg') or contains($field019b,'dh') or contains($field019b,'di') or contains($field019b,'dj') or contains($field019b,'dk') or $leader6='c' or $leader6='d' or $leader6='i' or $leader6='j'">Mus</xsl:when>
48
                <xsl:when test="$field019b='a' or contains($field019b,'ab') or contains($field019b,'aj') or $leader6='e' or $leader6='f'">Kar</xsl:when>
49
                <xsl:when test="$field019b='f' or $field019b='i' or contains($field019b,'ib') or contains($field019b,'ic') or contains($field019b,'fd') or contains($field019b,'ff') or contains($field019b,'fi') or $leader6='k'">gra</xsl:when>
50
                <xsl:when test="$field019b='g' or contains($field019b,'gb') or contains($field019b,'gd') or contains($field019b,'ge') or $leader6='m'">Fil</xsl:when>
51
                <xsl:when test="$leader6='o'">kom</xsl:when>
52
                <xsl:when test="$field019b='h' or $leader6='r'">trd</xsl:when>
53
                <xsl:when test="$field019b='j' or $leader6='a'">
54
                    <xsl:choose>
55
                        <xsl:when test="$leader7='a' or $leader7='c' or $leader7='m' or $leader7='p'">Mon</xsl:when>
56
                        <xsl:when test="$field019b='j' or $leader7='b' or $leader7='s'">Per</xsl:when>
57
                    </xsl:choose>
58
                </xsl:when>
59
            </xsl:choose>
60
        </xsl:variable>
61
        <xsl:variable name="controlField008-23" select="substring($controlField008,24,1)"/>
62
        <xsl:variable name="controlField008-21" select="substring($controlField008,22,1)"/>
63
        <xsl:variable name="controlField008-22" select="substring($controlField008,23,1)"/>
64
        <xsl:variable name="controlField008-24" select="substring($controlField008,25,4)"/>
65
        <xsl:variable name="controlField008-26" select="substring($controlField008,27,1)"/>
66
        <xsl:variable name="controlField008-29" select="substring($controlField008,30,1)"/>
67
        <xsl:variable name="controlField008-34" select="substring($controlField008,35,1)"/>
68
        <xsl:variable name="controlField008-33" select="substring($controlField008,34,1)"/>
69
        <xsl:variable name="controlField008-30-31" select="substring($controlField008,31,2)"/>
70
71
        <xsl:variable name="physicalDescription">
72
73
        <!-- Why are these treated specially?
74
75
            <xsl:if test="$typeOf008='CF' and marc:controlfield[@tag=007][substring(.,12,1)='a']">
76
                reformatted digital
77
            </xsl:if>
78
            <xsl:if test="$typeOf008='CF' and marc:controlfield[@tag=007][substring(.,12,1)='b']">
79
                digitized microfilm
80
            </xsl:if>
81
            <xsl:if test="$typeOf008='CF' and marc:controlfield[@tag=007][substring(.,12,1)='d']">
82
                digitized other analog
83
            </xsl:if>
84
85
            <xsl:variable name="check008-23">
86
                <xsl:if test="$typeOf008='BK' or $typeOf008='MU' or $typeOf008='CR' or $typeOf008='MX'">
87
                    <xsl:value-of select="true()"></xsl:value-of>
88
                </xsl:if>
89
            </xsl:variable>
90
            <xsl:variable name="check008-29">
91
                <xsl:if test="$typeOf008='MP' or $typeOf008='VM'">
92
                    <xsl:value-of select="true()"></xsl:value-of>
93
                </xsl:if>
94
            </xsl:variable>
95
96
            <xsl:choose>
97
                <xsl:when test="($check008-23 and $controlField008-23='f') or ($check008-29 and $controlField008-29='f')">
98
                    braille
99
                </xsl:when>
100
                <xsl:when test="($controlField008-23=' ' and ($leader6='c' or $leader6='d')) or (($typeOf008='BK' or $typeOf008='CR') and ($controlField008-23=' ' or $controlField008='r'))">
101
                    print
102
                </xsl:when>
103
                <xsl:when test="$leader6 = 'm' or ($check008-23 and $controlField008-23='s') or ($check008-29 and $controlField008-29='s')">
104
                    electronic
105
                </xsl:when>
106
                <xsl:when test="($check008-23 and $controlField008-23='b') or ($check008-29 and $controlField008-29='b')">
107
                    microfiche
108
                </xsl:when>
109
                <xsl:when test="($check008-23 and $controlField008-23='a') or ($check008-29 and $controlField008-29='a')">
110
                    microfilm
111
                </xsl:when>
112
            </xsl:choose>
113
114
            -->
115
116
            <!-- 019$b from BSMARC -->
117
118
            <xsl:if test="$field019b">
119
				<xsl:if test="$field019b='a'"> Kartografisk materiale</xsl:if>
120
				<xsl:if test="contains($field019b,'ab')"> Atlas</xsl:if>
121
				<xsl:if test="contains($field019b,'aj')"> Kart</xsl:if>
122
				<xsl:if test="$field019b='b'"> Manuskripter</xsl:if>
123
				<xsl:if test="$field019b='c'"> Musikktrykk</xsl:if>
124
				<xsl:if test="$field019b='d'"> Lydopptak</xsl:if>
125
				<xsl:if test="contains($field019b,'da')"> Grammofonplate</xsl:if>
126
				<xsl:if test="contains($field019b,'db')"> Kassett</xsl:if>
127
				<xsl:if test="contains($field019b,'dc')"> Kompaktplate</xsl:if>
128
				<xsl:if test="contains($field019b,'dd')"> Avspiller med lydfil (eks. Digibøker)</xsl:if>
129
				<xsl:if test="contains($field019b,'dg')"> Musikk</xsl:if>
130
				<xsl:if test="contains($field019b,'dh')"> Språkkurs</xsl:if>
131
				<xsl:if test="contains($field019b,'di')"> Lydbok</xsl:if>
132
				<xsl:if test="contains($field019b,'dj')"> Annen tale/annet</xsl:if>
133
				<xsl:if test="contains($field019b,'dk')"> Kombidokument</xsl:if>
134
				<xsl:if test="$field019b='e'"> Film og video</xsl:if>
135
				<xsl:if test="contains($field019b,'ec')"> Filmspole</xsl:if>
136
				<xsl:if test="contains($field019b,'ed')"> Videokassett (VHS)</xsl:if>
137
				<xsl:if test="contains($field019b,'ee')"> Videoplate (DVD)</xsl:if>
138
				<xsl:if test="contains($field019b,'ef')"> Blu-ray-plate</xsl:if>
139
				<xsl:if test="$field019b='f'"> Grafisk materiale</xsl:if>
140
				<xsl:if test="contains($field019b,'fd')"> Dias</xsl:if>
141
				<xsl:if test="contains($field019b,'ff')"> Fotografi</xsl:if>
142
				<xsl:if test="contains($field019b,'fi')"> Kunstreproduksjon</xsl:if>
143
				<xsl:if test="$field019b='g'"> Elektroniske ressurser</xsl:if>
144
				<xsl:if test="contains($field019b,'gb')"> Diskett</xsl:if>
145
				<xsl:if test="contains($field019b,'gd')"> Optiske lagringsmedia (CD-ROM)</xsl:if>
146
				<xsl:if test="contains($field019b,'ge')"> Nettressurser</xsl:if>
147
				<xsl:if test="$field019b='h'"> Tredimensjonale gjenstander</xsl:if>
148
				<xsl:if test="$field019b='i'"> Mikroformer</xsl:if>
149
				<xsl:if test="contains($field019b,'ib')"> Mikrofilmspole</xsl:if>
150
				<xsl:if test="contains($field019b,'ic')"> Mikrofilmkort</xsl:if>
151
				<xsl:if test="$field019b='j'"> Periodika</xsl:if>
152
				<xsl:if test="$field019b='k'"> Artikler (i bøker eller periodika)</xsl:if>
153
				<xsl:if test="$field019b='l'"> Fysiske bøker</xsl:if>
154
            </xsl:if>
155
156
            <!-- Check positions 00 and 01 of controlfield 007 -->
157
158
            <xsl:if test="$controlField007-00='a'">
159
		<!-- Kartografisk materiale (unntatt globus) -->
160
				<xsl:if test="$controlField007-01='a'">Anamorfisk kart</xsl:if>
161
				<xsl:if test="$controlField007-01='b'">Atlas</xsl:if>
162
				<xsl:if test="$controlField007-01='c'">Fantasikart</xsl:if>
163
				<xsl:if test="$controlField007-01='d'">Flykart</xsl:if>
164
				<xsl:if test="$controlField007-01='e'">Sjøkart</xsl:if>
165
				<xsl:if test="$controlField007-01='f'">Navigasjonskart</xsl:if>
166
				<xsl:if test="$controlField007-01='g'">Blokkdiagram</xsl:if>
167
				<xsl:if test="$controlField007-01='h'">Stjernekart</xsl:if>
168
				<xsl:if test="$controlField007-01='j'">Kart</xsl:if>
169
				<xsl:if test="$controlField007-01='k'">Kartprofil</xsl:if>
170
				<xsl:if test="$controlField007-01='l'">Fotokart</xsl:if>
171
				<xsl:if test="$controlField007-01='m'">Fotomosaikk</xsl:if>
172
				<xsl:if test="$controlField007-01='n'">Ortofoto</xsl:if>
173
				<xsl:if test="$controlField007-01='o'">Tegnet kart</xsl:if>
174
				<xsl:if test="$controlField007-01='p'">Trykt kart</xsl:if>
175
				<xsl:if test="$controlField007-01='q'">Terrengmodell</xsl:if>
176
				<xsl:if test="$controlField007-01='r'">Fjernanalysebilde</xsl:if>
177
				<xsl:if test="$controlField007-01='s'">Kartseksjon</xsl:if>
178
				<xsl:if test="$controlField007-01='t'">Plan</xsl:if>
179
				<xsl:if test="$controlField007-01='y'">Perspektivkart</xsl:if>
180
				<xsl:if test="$controlField007-01='z'">Annen karttype</xsl:if>
181
            </xsl:if>
182
183
            <xsl:if test="$controlField007-00='c'">
184
		<!-- Maskinlesbar fil -->
185
				<xsl:if test="$controlField007-01='a'">Magnetisk-optisk plate</xsl:if>
186
				<xsl:if test="$controlField007-01='b'">Lagringsbrikke</xsl:if>
187
				<xsl:if test="$controlField007-01='c'">Optisk kassett</xsl:if>
188
				<xsl:if test="$controlField007-01='d'">Diskett</xsl:if>
189
				<xsl:if test="$controlField007-01='h'">Platelager (harddisk)</xsl:if>
190
				<xsl:if test="$controlField007-01='k'">Magnetbåndkassett</xsl:if>
191
				<xsl:if test="$controlField007-01='m'">Magnetbåndspole</xsl:if>
192
				<xsl:if test="$controlField007-01='n'">Fjerntilgang (online)</xsl:if>
193
				<xsl:if test="$controlField007-01='o'">Optisk plate</xsl:if>
194
				<xsl:if test="$controlField007-01='z'">Annet lagringsmedium</xsl:if>
195
            </xsl:if>
196
197
            <xsl:if test="$controlField007-00='d'">
198
		<!-- Globus -->
199
				<xsl:if test="$controlField007-01='a'">Stjerneglobus</xsl:if>
200
				<xsl:if test="$controlField007-01='b'">Planet- eller måneglobus</xsl:if>
201
				<xsl:if test="$controlField007-01='c'">Jordglobus</xsl:if>
202
				<xsl:if test="$controlField007-01='z'">Annen globustype</xsl:if>
203
            </xsl:if>
204
205
            <xsl:if test="$controlField007-00='g'">
206
		<!-- Grafisk materiale som er tenkt projisert eller gjennomlyst -->
207
				<xsl:if test="$controlField007-01='h'">Hologram</xsl:if>
208
				<xsl:if test="$controlField007-01='o'">Billedbånd</xsl:if>
209
				<xsl:if test="$controlField007-01='p'">Stereobilde</xsl:if>
210
				<xsl:if test="$controlField007-01='r'">Røntgenbilde</xsl:if>
211
				<xsl:if test="$controlField007-01='s'">Dia</xsl:if>
212
				<xsl:if test="$controlField007-01='t'">Transparent</xsl:if>
213
				<xsl:if test="$controlField007-01='z'">Annen materialtype</xsl:if>
214
            </xsl:if>
215
216
            <xsl:if test="$controlField007-00='h'">
217
		<!-- Mikroform -->
218
				<xsl:if test="$controlField007-01='a'">Vinduskort</xsl:if>
219
				<xsl:if test="$controlField007-01='c'">Mikrofilmkassett</xsl:if>
220
				<xsl:if test="$controlField007-01='d'">Mikrofilmspole</xsl:if>
221
				<xsl:if test="$controlField007-01='e'">Mikrofilmkort</xsl:if>
222
				<xsl:if test="$controlField007-01='g'">Mikro-opak</xsl:if>
223
				<xsl:if test="$controlField007-01='z'">Annen mikroformtype</xsl:if>
224
            </xsl:if>
225
226
            <xsl:if test="$controlField007-00='k'">
227
		<!-- Grafisk materiale som er ugjennomtrengelig for lys -->
228
				<xsl:if test="$controlField007-01='c'">Collage</xsl:if> <!-- Originalt kunstverk -->
229
				<xsl:if test="$controlField007-01='d'">Tegning</xsl:if> <!-- Originalt kunstverk -->
230
				<xsl:if test="$controlField007-01='e'">Maleri</xsl:if> <!-- Originalt kunstverk -->
231
				<xsl:if test="$controlField007-01='g'">Fotografi - negativ</xsl:if>
232
				<xsl:if test="$controlField007-01='h'">Fotografi</xsl:if> <!-- Brukes også om ugjennomsiktige stereobilder. -->
233
				<xsl:if test="$controlField007-01='i'">Bilde</xsl:if> <!-- Brukes når en mer spesifikk betegnelse er ukjent eller uønsket. -->
234
				<xsl:if test="$controlField007-01='j'">Grafisk blad</xsl:if>
235
				<xsl:if test="$controlField007-01='k'">Flipover</xsl:if>
236
				<xsl:if test="$controlField007-01='l'">Teknisk tegning</xsl:if>
237
				<xsl:if test="$controlField007-01='m'">Studieplansje</xsl:if>
238
				<xsl:if test="$controlField007-01='n'">Plansje</xsl:if>
239
				<xsl:if test="$controlField007-01='o'">Billedkort</xsl:if>
240
				<xsl:if test="$controlField007-01='p'">Ordkort</xsl:if>
241
				<xsl:if test="$controlField007-01='q'">Symbolkort</xsl:if>
242
				<xsl:if test="$controlField007-01='r'">Kunstreproduksjon</xsl:if>
243
				<xsl:if test="$controlField007-01='s'">Postkort</xsl:if>
244
				<xsl:if test="$controlField007-01='t'">Plakat</xsl:if>
245
				<xsl:if test="$controlField007-01='z'">Annen materialtype</xsl:if>
246
            </xsl:if>
247
248
            <xsl:if test="$controlField007-00='m'">
249
		<!-- Film -->
250
				<xsl:if test="$controlField007-01='c'">Filmsløyfe</xsl:if>
251
				<xsl:if test="$controlField007-01='f'">Filmkassett</xsl:if>
252
				<xsl:if test="$controlField007-01='r'">Filmspole</xsl:if>
253
				<xsl:if test="$controlField007-01='z'">Annen filmtype</xsl:if>
254
            </xsl:if>
255
256
            <xsl:if test="$controlField007-00='s'">
257
		<!-- Lydopptak -->
258
				<xsl:if test="$controlField007-01='c'">Kompaktplate</xsl:if>
259
				<xsl:if test="$controlField007-01='d'">Grammofonplate</xsl:if>
260
				<xsl:if test="$controlField007-01='e'">Sylinder</xsl:if> <!-- Lydrull, voksrull, fonografsylinder -->
261
				<xsl:if test="$controlField007-01='g'">Sløyfekassett</xsl:if>
262
				<xsl:if test="$controlField007-01='i'">Filmlydspor</xsl:if>
263
				<xsl:if test="$controlField007-01='q'">Rull (pianorull/orgelrull)</xsl:if>
264
				<xsl:if test="$controlField007-01='s'">Lydkassett</xsl:if>
265
				<xsl:if test="$controlField007-01='t'">Lydbånd</xsl:if>
266
				<xsl:if test="$controlField007-01='w'">Wire</xsl:if>
267
				<xsl:if test="$controlField007-01='z'">Annet lydmateriale</xsl:if>
268
            </xsl:if>
269
270
            <xsl:if test="$controlField007-00='u'">
271
		<!-- Tre-dimensjonal gjenstand -->
272
				<xsl:if test="$controlField007-01='a'">Originalt kunstverk</xsl:if> <!-- F.eks. en skulptur. -->
273
				<xsl:if test="$controlField007-01='c'">Kunstreproduksjon</xsl:if>
274
				<xsl:if test="$controlField007-01='d'">Diorama</xsl:if>
275
				<xsl:if test="$controlField007-01='e'">Øvelsesmodell</xsl:if>
276
				<xsl:if test="$controlField007-01='g'">Spill</xsl:if>
277
				<xsl:if test="$controlField007-01='p'">Mikroskopdia</xsl:if>
278
				<xsl:if test="$controlField007-01='q'">Modell</xsl:if>
279
				<xsl:if test="$controlField007-01='r'">Realia</xsl:if>
280
				<xsl:if test="$controlField007-01='u'">Utstilling</xsl:if>
281
				<xsl:if test="$controlField007-01='z'">Annen type gjenstand</xsl:if>
282
            </xsl:if>
283
284
            <xsl:if test="$controlField007-00='v'">
285
		<!-- Videoopptak -->
286
				<xsl:if test="$controlField007-01='d'">Videoplate</xsl:if>
287
				<xsl:if test="$controlField007-01='f'">Videokassett</xsl:if>
288
				<xsl:if test="$controlField007-01='r'">Videospole</xsl:if>
289
				<xsl:if test="$controlField007-01='z'">Annen type videoopptak</xsl:if>
290
            </xsl:if>
291
292
        </xsl:variable>
293
294
		<!-- Tittel og ansvarsopplysninger -->
295
	<a>
296
        <xsl:attribute name="href">
297
            <xsl:call-template name="buildBiblioDefaultViewURL">
298
                <xsl:with-param name="BiblioDefaultView">
299
                    <xsl:value-of select="$BiblioDefaultView"/>
300
                </xsl:with-param>
301
            </xsl:call-template>
302
            <xsl:value-of select="str:encode-uri($biblionumber, true())"/>
303
        </xsl:attribute>
304
        <xsl:attribute name="class">title</xsl:attribute>
305
306
        <xsl:if test="marc:datafield[@tag=245]">
307
        <xsl:for-each select="marc:datafield[@tag=245]">
308
            <xsl:variable name="title">
309
                     <xsl:call-template name="subfieldSelect">
310
                        <xsl:with-param name="codes">a</xsl:with-param>
311
                    </xsl:call-template>
312
                    <xsl:if test="marc:subfield[@code='h']">
313
                        <xsl:text> </xsl:text>
314
                        (<xsl:call-template name="subfieldSelect">
315
                            <xsl:with-param name="codes">h</xsl:with-param>
316
                        </xsl:call-template>)
317
                    </xsl:if>
318
                    <xsl:if test="marc:subfield[@code='b']">
319
                        <xsl:text> : </xsl:text>
320
                        <xsl:call-template name="subfieldSelect">
321
                            <xsl:with-param name="codes">b</xsl:with-param>
322
                        </xsl:call-template>
323
                    </xsl:if>
324
                    <xsl:text> </xsl:text>
325
                    <xsl:call-template name="subfieldSelect">
326
                        <xsl:with-param name="codes">np</xsl:with-param>
327
                     </xsl:call-template>
328
            </xsl:variable>
329
            <xsl:variable name="titleChop">
330
                <xsl:call-template name="chopPunctuation">
331
                    <xsl:with-param name="chopString">
332
                        <xsl:value-of select="$title"/>
333
                    </xsl:with-param>
334
                </xsl:call-template>
335
            </xsl:variable>
336
            <xsl:value-of select="$titleChop"/>
337
        </xsl:for-each>
338
        </xsl:if>
339
    </a>
340
    <p>
341
342
    <xsl:choose
343
>    <xsl:when test="marc:datafield[@tag=100] or marc:datafield[@tag=110] or marc:datafield[@tag=111] or marc:datafield[@tag=700] or marc:datafield[@tag=710] or marc:datafield[@tag=711]">
344
345
    av
346
        <xsl:for-each select="marc:datafield[(@tag=100 or @tag=700) and @ind1!='z']">
347
            <xsl:choose>
348
            <xsl:when test="position()=last()">
349
                <xsl:call-template name="nameABCDQ"/>.
350
            </xsl:when>
351
            <xsl:otherwise>
352
                <xsl:call-template name="nameABCDQ"/>;
353
            </xsl:otherwise>
354
            </xsl:choose>
355
        </xsl:for-each>
356
357
        <xsl:for-each select="marc:datafield[(@tag=110 or @tag=710) and @ind1!='z']">
358
            <xsl:choose>
359
            <xsl:when test="position()=last()">
360
                <xsl:call-template name="nameABCDN"/>.
361
            </xsl:when>
362
            <xsl:otherwise>
363
                <xsl:call-template name="nameABCDN"/>;
364
            </xsl:otherwise>
365
            </xsl:choose>
366
        </xsl:for-each>
367
368
        <xsl:for-each select="marc:datafield[(@tag=111 or @tag=711) and @ind1!='z']">
369
            <xsl:choose>
370
            <xsl:when test="position()=last()">
371
                <xsl:call-template name="nameACDEQ"/>.
372
            </xsl:when>
373
            <xsl:otherwise>
374
                <xsl:call-template name="nameACDEQ"/>;
375
            </xsl:otherwise>
376
            </xsl:choose>
377
        </xsl:for-each>
378
    </xsl:when>
379
    </xsl:choose>
380
    </p>
381
382
    <xsl:if test="marc:datafield[@tag=250]">
383
	<span class="results_summary">
384
    <span class="label">Utgave: </span>
385
            <xsl:for-each select="marc:datafield[@tag=250]">
386
                    <xsl:call-template name="subfieldSelect">
387
                        <xsl:with-param name="codes">ab</xsl:with-param>
388
                    </xsl:call-template>
389
            </xsl:for-each>
390
	</span>
391
    </xsl:if>
392
393
        <!-- Analytics -->
394
        <xsl:if test="$leader7='s' or $leader7='c'">
395
        <span class="results_summary analytics"><span class="label">Analytics: </span>
396
            <a>
397
            <xsl:choose>
398
            <xsl:when test="$UseControlNumber = '1' and marc:controlfield[@tag=001]">
399
                <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=rcn:<xsl:value-of select="str:encode-uri(marc:controlfield[@tag=001], true())"/>+and+(bib-level:a+or+bib-level:b)</xsl:attribute>
400
            </xsl:when>
401
            <xsl:otherwise>
402
                <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=Host-item:<xsl:value-of select="str:encode-uri(translate(marc:datafield[@tag=245]/marc:subfield[@code='a'], '/', ''), true())"/></xsl:attribute>
403
            </xsl:otherwise>
404
            </xsl:choose>
405
            <xsl:text>Show analytics</xsl:text>
406
            </a>
407
        </span>
408
        </xsl:if>
409
410
        <!-- 773 - Links from child to parent -->
411
        <xsl:if test="marc:datafield[@tag=773]">
412
        <xsl:for-each select="marc:datafield[@tag=773]">
413
        <xsl:if test="@ind1=0">
414
        <span class="results_summary in"><span class="label">
415
        <xsl:choose>
416
        <xsl:when test="@ind2=' '">
417
            In:
418
        </xsl:when>
419
        <xsl:when test="@ind2=8">
420
            <xsl:if test="marc:subfield[@code='i']">
421
                <xsl:value-of select="marc:subfield[@code='i']"/>
422
            </xsl:if>
423
        </xsl:when>
424
        </xsl:choose>
425
        </span>
426
                <xsl:variable name="f773">
427
                    <xsl:call-template name="chopPunctuation"><xsl:with-param name="chopString"><xsl:call-template name="subfieldSelect">
428
                        <xsl:with-param name="codes">a_t</xsl:with-param>
429
                    </xsl:call-template></xsl:with-param></xsl:call-template>
430
                </xsl:variable>
431
            <xsl:choose>
432
                <xsl:when test="$UseControlNumber = '1' and marc:subfield[@code='w']">
433
                    <a><xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=Control-number:<xsl:call-template name="extractControlNumber"><xsl:with-param name="subfieldW" select="marc:subfield[@code='w']"/></xsl:call-template></xsl:attribute>
434
                        <xsl:value-of select="translate($f773, '()', '')"/>
435
                    </a>
436
                    <xsl:if test="marc:subfield[@code='g']"><xsl:text> </xsl:text><xsl:value-of select="marc:subfield[@code='g']"/></xsl:if>
437
                </xsl:when>
438
                <xsl:when test="marc:subfield[@code='0']">
439
                    <a><xsl:attribute name="href">/cgi-bin/koha/opac-detail.pl?biblionumber=<xsl:value-of select="str:encode-uri(marc:subfield[@code='0'], true())"/></xsl:attribute>
440
                        <xsl:value-of select="$f773"/>
441
                    </a>
442
                </xsl:when>
443
                <xsl:otherwise>
444
                    <a><xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=ti,phr:<xsl:value-of select="str:encode-uri(translate($f773, '()', ''), true())"/></xsl:attribute>
445
                        <xsl:value-of select="$f773"/>
446
                    </a>
447
                    <xsl:if test="marc:subfield[@code='g']"><xsl:text> </xsl:text><xsl:value-of select="marc:subfield[@code='g']"/></xsl:if>
448
                </xsl:otherwise>
449
            </xsl:choose>
450
        </span>
451
        <xsl:if test="marc:subfield[@code='n']">
452
            <span class="results_summary"><xsl:value-of select="marc:subfield[@code='n']"/></span>
453
        </xsl:if>
454
        </xsl:if>
455
        </xsl:for-each>
456
        </xsl:if>
457
458
<xsl:if test="$DisplayOPACiconsXSLT!='0'">
459
    <span class="results_summary">
460
    <xsl:if test="$typeOf008!=''">
461
        <span class="label">Materialtype: </span>
462
        <xsl:choose>
463
            <xsl:when test="$typeOf008='Mon'"><img src="/opac-tmpl/lib/famfamfam/BK.png" alt="Bok" title="Bok"/> Bok</xsl:when>
464
            <xsl:when test="$typeOf008='Per'"><img src="/opac-tmpl/lib/famfamfam/AR.png" alt="Periodika" title="Periodika"/> Periodika</xsl:when>
465
            <xsl:when test="$typeOf008='Fil'"><img src="/opac-tmpl/lib/famfamfam/CF.png" alt="Fil" title="Fil"/> Fil</xsl:when>
466
            <xsl:when test="$typeOf008='Kar'"><img src="/opac-tmpl/lib/famfamfam/MP.png" alt="Kart" title="Kart"/> Kart</xsl:when>
467
            <xsl:when test="$typeOf008='FV'"><img  src="/opac-tmpl/lib/famfamfam/VM.png" alt="Film og video" title="Film og video"/> Film og video</xsl:when>
468
            <xsl:when test="$typeOf008='Mus'"><img src="/opac-tmpl/lib/famfamfam/PR.png" alt="Musikktrykk og lydopptak" title="Musikktrykk og lydopptak"/> Musikk</xsl:when>
469
            <xsl:when test="$typeOf008='gra'"><img src="/opac-tmpl/lib/famfamfam/GR.png" alt="Grafisk materiale" title="Grafisk materiale"/> Grafisk materiale</xsl:when>
470
            <xsl:when test="$typeOf008='kom'"><img src="/opac-tmpl/lib/famfamfam/MX.png" alt="Kombidokumenter" title="Kombidokumenter"/> Kombidokumenter</xsl:when>
471
            <xsl:when test="$typeOf008='trd'"><img src="/opac-tmpl/lib/famfamfam/TD.png" alt="Tre-dimensjonale gjenstander" title="Tre-dimensjonale gjenstander"/> Tre-dimensjonale gjenstander</xsl:when>
472
        </xsl:choose>
473
    </xsl:if>
474
    <xsl:if test="string-length(normalize-space($physicalDescription))">
475
        <span class="label">; Format: </span><xsl:copy-of select="$physicalDescription"></xsl:copy-of>
476
    </xsl:if>
477
478
    <!-- test
479
    <xsl:for-each select="marc:datafield[@tag=019]">
480
    019b:
481
    <xsl:call-template name="subfieldSelect">
482
		<xsl:with-param name="codes">b</xsl:with-param>
483
		</xsl:call-template>
484
    </xsl:for-each>
485
	-->
486
487
        <xsl:if test="$controlField008-21 or $controlField008-22 or $controlField008-24 or $controlField008-26 or $controlField008-29 or $controlField008-34 or $controlField008-33 or $controlField008-30-31 or $controlField008-33">
488
489
        <xsl:if test="$typeOf008='Per'">
490
        <xsl:if test="$controlField008-21 and contains($controlField008-21,'amnpz')">
491
        <span class="label">; Type periodikum: </span>
492
        </xsl:if>
493
            <xsl:choose>
494
                <xsl:when test="$controlField008-21='a'">Ã…rbok</xsl:when>
495
				<xsl:when test="$controlField008-21='m'">Monografiserie</xsl:when>
496
				<xsl:when test="$controlField008-21='n'">Avis</xsl:when>
497
				<xsl:when test="$controlField008-21='p'">Tidsskrift</xsl:when>
498
				<xsl:when test="$controlField008-21='z'">Andre typer periodika</xsl:when>
499
            </xsl:choose>
500
        </xsl:if>
501
502
        <xsl:if test="$typeOf008='Mon' or $typeOf008='Per'">
503
        <xsl:if test="contains($controlField008-24,'abcdefhiklmnoqrstx')">
504
        <span class="label">; Innhold: </span>
505
        </xsl:if>
506
            <xsl:choose>
507
                <xsl:when test="contains($controlField008-24,'a')"> Sammendrag(abstracts)/Referatorganer</xsl:when>
508
                <xsl:when test="contains($controlField008-24,'b')"> Bibliografier</xsl:when>
509
                <xsl:when test="contains($controlField008-24,'c')"> Kataloger</xsl:when>
510
                <xsl:when test="contains($controlField008-24,'d')"> Ordbøker</xsl:when>
511
                <xsl:when test="contains($controlField008-24,'e')"> Konversasjonsleksika</xsl:when>
512
                <xsl:when test="contains($controlField008-24,'f')"> Håndbøker</xsl:when>
513
                <xsl:when test="contains($controlField008-24,'h')"> Referanseverk</xsl:when>
514
                <xsl:when test="contains($controlField008-24,'i')"> Registre</xsl:when>
515
                <xsl:when test="contains($controlField008-24,'k')"> Diskografier</xsl:when>
516
                <xsl:when test="contains($controlField008-24,'l')"> Lover og forskrifter</xsl:when>
517
                <xsl:when test="contains($controlField008-24,'m')"> Hovedoppgaver/diplomoppgaver</xsl:when>
518
                <xsl:when test="contains($controlField008-24,'n')"> Oversiktsverker innenfor et emne</xsl:when>
519
                <xsl:when test="contains($controlField008-24,'o')"> Anmeldelser</xsl:when>
520
                <xsl:when test="contains($controlField008-24,'q')"> Filmografier</xsl:when>
521
                <xsl:when test="contains($controlField008-24,'r')"> Adressebøker</xsl:when>
522
                <xsl:when test="contains($controlField008-24,'s')"> Statistikker</xsl:when>
523
                <xsl:when test="contains($controlField008-24,'t')"> Tekniske rapporter</xsl:when>
524
                <xsl:when test="contains($controlField008-24,'x')"> Doktoravhandlinger/lisensiat-avhandlinger</xsl:when>
525
                <!--
526
                <xsl:when test="contains($controlField008-24,'z')"> Annet</xsl:when>
527
                -->
528
            </xsl:choose>
529
            <xsl:choose>
530
                <xsl:when test="$controlField008-29='1'">
531
                    Konferansepublikasjon
532
                </xsl:when>
533
            </xsl:choose>
534
        </xsl:if>
535
        <xsl:if test="$typeOf008='CF'">
536
            <xsl:if test="$controlField008-26='a' or $controlField008-26='b' or $controlField008-26='c' or $controlField008-26='d' or $controlField008-26='e' or $controlField008-26='f' or $controlField008-26='g' or $controlField008-26='h' or $controlField008-26='i' or $controlField008-26='j'">
537
            <span class="label">; Type maskinlesbar fil: </span>
538
            </xsl:if>
539
            <xsl:choose>
540
                <xsl:when test="$controlField008-26='a'">Numeriske data</xsl:when>
541
                <xsl:when test="$controlField008-26='b'">Programvare</xsl:when>
542
                <xsl:when test="$controlField008-26='c'">Grafiske data</xsl:when>
543
                <xsl:when test="$controlField008-26='d'">Tekst</xsl:when>
544
                <xsl:when test="$controlField008-26='e'">Bibliografiske data</xsl:when>
545
                <xsl:when test="$controlField008-26='f'">Font</xsl:when>
546
                <xsl:when test="$controlField008-26='g'">Spill</xsl:when>
547
                <xsl:when test="$controlField008-26='h'">Lyd</xsl:when>
548
                <xsl:when test="$controlField008-26='i'">Interaktivt multimedium</xsl:when>
549
                <xsl:when test="$controlField008-26='j'">Online tjeneste</xsl:when>
550
                <!-- Probably makes no sense to display these
551
                <xsl:when test="$controlField008-26='m'">En kombinasjon av to eller flere av de ovennevnte</xsl:when>
552
                <xsl:when test="$controlField008-26='u'">Ukjent</xsl:when>
553
                <xsl:when test="$controlField008-26='z'">Annen type data</xsl:when>
554
                -->
555
            </xsl:choose>
556
        </xsl:if>
557
        <xsl:if test="$typeOf008='Mon'">
558
            <xsl:if test="(substring($controlField008,25,1)='j') or (substring($controlField008,25,1)='1') or ($controlField008-34='a' or $controlField008-34='b' or $controlField008-34='c' or $controlField008-34='d')">
559
            <span class="label">; Innhold: </span>
560
            </xsl:if>
561
            <xsl:if test="substring($controlField008,31,1)='1' or substring($controlField008,31,1)='a' or substring($controlField008,31,1)='b'">
562
                Festskrift
563
            </xsl:if>
564
            <xsl:if test="$controlField008-34='a' or $controlField008-34='a' or $controlField008-34='b' or $controlField008-34='c' or $controlField008-34='d'">
565
                Biografi
566
            </xsl:if>
567
568
            <xsl:if test="$controlField008-33 and $controlField008-33!='^' and $controlField008-33!=' '">
569
            <span class="label">; Litterær form: </span>
570
            </xsl:if>
571
            <xsl:choose>
572
                <xsl:when test="$controlField008-33='0'">Ikke skjønnlitteratur</xsl:when>
573
                <xsl:when test="$controlField008-33='l'">Lærebok, brevkurs</xsl:when>
574
                <xsl:when test="$controlField008-33='1'">Skjønnlitteratur</xsl:when>
575
                <xsl:when test="$controlField008-33='r'">Roman</xsl:when>
576
                <xsl:when test="$controlField008-33='n'">Novelle / fortelling</xsl:when>
577
                <xsl:when test="$controlField008-33='d'">Dikt</xsl:when>
578
                <xsl:when test="$controlField008-33='s'">Skuespill</xsl:when>
579
                <xsl:when test="$controlField008-33='t'">Tegneserie</xsl:when>
580
                <xsl:when test="$controlField008-33='a'">Antologi</xsl:when>
581
                <xsl:when test="$controlField008-33='p'">Pekebok</xsl:when>
582
            </xsl:choose>
583
        </xsl:if>
584
        <xsl:if test="$typeOf008='Mus' and $controlField008-30-31 and $controlField008-30-31!='^^' and $controlField008-30-31!='  '">
585
            <span class="label">; Litterær form: </span> <!-- Literary text for sound recordings -->
586
            <xsl:if test="contains($controlField008-30-31,'a')">Selvbiografier</xsl:if>
587
            <xsl:if test="contains($controlField008-30-31,'b')">Biografier</xsl:if>
588
            <xsl:if test="contains($controlField008-30-31,'c')">Samtaler og diskusjoner</xsl:if>
589
            <xsl:if test="contains($controlField008-30-31,'d')">Drama</xsl:if>
590
            <xsl:if test="contains($controlField008-30-31,'e')">Essays</xsl:if>
591
            <xsl:if test="contains($controlField008-30-31,'f')">Romaner</xsl:if>
592
            <xsl:if test="contains($controlField008-30-31,'g')">Rapporter, referater</xsl:if>
593
            <xsl:if test="contains($controlField008-30-31,'h')">Fortellinger, noveller</xsl:if>
594
            <xsl:if test="contains($controlField008-30-31,'i')">Undervisning</xsl:if>
595
            <xsl:if test="contains($controlField008-30-31,'j')">Språkundervisning</xsl:if>
596
            <xsl:if test="contains($controlField008-30-31,'k')">Komedier</xsl:if>
597
            <xsl:if test="contains($controlField008-30-31,'l')">Foredrag, taler</xsl:if>
598
            <xsl:if test="contains($controlField008-30-31,'m')">Memoarer</xsl:if>
599
            <xsl:if test="contains($controlField008-30-31,'o')">Eventyr</xsl:if>
600
            <xsl:if test="contains($controlField008-30-31,'p')">Dikt</xsl:if>
601
            <xsl:if test="contains($controlField008-30-31,'r')">Fremføring av alle typer ikke-musikalske produksjoner</xsl:if>
602
            <xsl:if test="contains($controlField008-30-31,'s')">Lyder (f.eks. fuglelyder)</xsl:if>
603
            <xsl:if test="contains($controlField008-30-31,'t')">Intervjuer</xsl:if>
604
            <xsl:if test="contains($controlField008-30-31,'z')">Andre typer innhold</xsl:if>
605
        </xsl:if>
606
607
        <!--
608
        <xsl:if test="$typeOf008='VM'">
609
            <span class="label">; Type of visual material: </span>
610
            <xsl:choose>
611
                <xsl:when test="$controlField008-33='a'">
612
                    art original
613
                </xsl:when>
614
                <xsl:when test="$controlField008-33='b'">
615
                    kit
616
                </xsl:when>
617
                <xsl:when test="$controlField008-33='c'">
618
                    art reproduction
619
                </xsl:when>
620
                <xsl:when test="$controlField008-33='d'">
621
                    diorama
622
                </xsl:when>
623
                <xsl:when test="$controlField008-33='f'">
624
                    filmstrip
625
                </xsl:when>
626
                <xsl:when test="$controlField008-33='g'">
627
                    legal article
628
                </xsl:when>
629
                <xsl:when test="$controlField008-33='i'">
630
                    picture
631
                </xsl:when>
632
                <xsl:when test="$controlField008-33='k'">
633
                    graphic
634
                </xsl:when>
635
                <xsl:when test="$controlField008-33='l'">
636
                    technical drawing
637
                </xsl:when>
638
                <xsl:when test="$controlField008-33='m'">
639
                    motion picture
640
                </xsl:when>
641
                <xsl:when test="$controlField008-33='n'">
642
                    chart
643
                </xsl:when>
644
                <xsl:when test="$controlField008-33='o'">
645
                    flash card
646
                </xsl:when>
647
                <xsl:when test="$controlField008-33='p'">
648
                    microscope slide
649
                </xsl:when>
650
                <xsl:when test="$controlField008-33='q' or marc:controlfield[@tag=007][substring(text(),1,1)='a'][substring(text(),2
651
,1)='q']">
652
                    model
653
                </xsl:when>
654
                <xsl:when test="$controlField008-33='r'">
655
                    realia
656
                </xsl:when>
657
                <xsl:when test="$controlField008-33='s'">
658
                    slide
659
                </xsl:when>
660
                <xsl:when test="$controlField008-33='t'">
661
                    transparency
662
                </xsl:when>
663
                <xsl:when test="$controlField008-33='v'">
664
                    videorecording
665
                </xsl:when>
666
                <xsl:when test="$controlField008-33='w'">
667
                    toy
668
                </xsl:when>
669
            </xsl:choose>
670
        </xsl:if>
671
        -->
672
673
        </xsl:if>
674
675
	<!--
676
    <xsl:if test="($typeOf008='Mon' or $typeOf008='Per' or $typeOf008='Mus' or $typeOf008='FV' or $typeOf008='Fil') and ($controlField008-22='a' or $controlField008-22='b' or $controlField008-22='c' or $controlField008-22='d' or $controlField008-22='e' or $controlField008-22='g' or $controlField008-22='j' or $controlField008-22='f')">
677
    -->
678
    <xsl:if test="$typeOf008='Mon'">
679
        <span class="label">; MÃ¥lgruppe: </span>
680
        <xsl:choose>
681
			<xsl:when test="$controlField008-22='a'">Voksne;</xsl:when>
682
			<xsl:when test="$controlField008-22='b'">Billedbøker for voksne;</xsl:when>
683
			<xsl:when test="$controlField008-22='j'">Barn og ungdom;</xsl:when>
684
			<xsl:when test="$controlField008-22='k'">Billedbøker;</xsl:when>
685
			<xsl:when test="$controlField008-22='l'">Barn i alderen til og med 5 år;</xsl:when>
686
			<xsl:when test="$controlField008-22='m'">Elever på 1. til 3. klassetrinn;</xsl:when>
687
			<xsl:when test="$controlField008-22='n'">Elever på 4. og 5. klassetrinn;</xsl:when>
688
			<xsl:when test="$controlField008-22='o'">Elever på 6. og 7. klassetrinn;</xsl:when>
689
			<xsl:when test="$controlField008-22='p'">Elever på ungdomstrinnet;</xsl:when>
690
			<xsl:when test="$controlField008-22='v'">Billedbøker for barn i alderen til og med 5 år;</xsl:when>
691
			<xsl:when test="$controlField008-22='w'">Billedbøker for elever på 1. til 3. klassetrinn;</xsl:when>
692
			<xsl:when test="$controlField008-22='x'">Billedbøker for elever på 4. og 5. klassetrinn;</xsl:when>
693
			<xsl:when test="$controlField008-22='y'">Billedbøker for elever på 6. og 7. klassetrinn;</xsl:when>
694
			<xsl:when test="$controlField008-22='z'">Billedbøker for elever på ungdomstrinnet;</xsl:when>
695
			<xsl:when test="$controlField008-22='f'">Spesialisert;</xsl:when>
696
			<xsl:when test="$controlField008-22='q'">Lettlest;</xsl:when>
697
			<xsl:when test="$controlField008-22='r'">For psykisk utviklingshemmede;</xsl:when>
698
			<xsl:when test="$controlField008-22='s'">Storskrift;</xsl:when>
699
			<xsl:when test="$controlField008-22='g'">Generell;</xsl:when>
700
			<xsl:when test="$controlField008-22='u'">Ukjent;</xsl:when>
701
        </xsl:choose>
702
    </xsl:if>
703
    <xsl:if test="$typeOf008='Per'">
704
        <span class="label">; MÃ¥lgruppe: </span>
705
        <xsl:choose>
706
			<xsl:when test="$controlField008-22='a'">Voksne;</xsl:when>
707
			<xsl:when test="$controlField008-22='b'">Tegneserier for voksne;</xsl:when>
708
			<xsl:when test="$controlField008-22='j'">Barn og ungdom;</xsl:when>
709
			<xsl:when test="$controlField008-22='k'">Tegneserier;</xsl:when>
710
			<xsl:when test="$controlField008-22='l'">Barn i alderen til og med 5 år;</xsl:when>
711
			<xsl:when test="$controlField008-22='m'">Elever på 1. til 3. klassetrinn;</xsl:when>
712
			<xsl:when test="$controlField008-22='n'">Elever på 4. og 5. klassetrinn;</xsl:when>
713
			<xsl:when test="$controlField008-22='o'">Elever på 6. og 7. klassetrinn;</xsl:when>
714
			<xsl:when test="$controlField008-22='p'">Elever på ungdomstrinnet;</xsl:when>
715
			<xsl:when test="$controlField008-22='v'">Tegneserier for barn i alderen til og med 5 år;</xsl:when>
716
			<xsl:when test="$controlField008-22='w'">Tegneserier for elever på 1. til 3. klassetrinn;</xsl:when>
717
			<xsl:when test="$controlField008-22='x'">Tegneserier for elever på 4. og 5. klassetrinn;</xsl:when>
718
			<xsl:when test="$controlField008-22='y'">Tegneserier for elever på 6. og 7. klassetrinn;</xsl:when>
719
			<xsl:when test="$controlField008-22='z'">Tegneserier for elever på ungdomstrinnet;</xsl:when>
720
			<xsl:when test="$controlField008-22='f'">Spesialisert;</xsl:when>
721
			<xsl:when test="$controlField008-22='q'">Lettlest;</xsl:when>
722
			<xsl:when test="$controlField008-22='r'">For psykisk utviklingshemmede;</xsl:when>
723
			<xsl:when test="$controlField008-22='s'">Storskrift;</xsl:when>
724
			<xsl:when test="$controlField008-22='g'">Generell;</xsl:when>
725
			<xsl:when test="$controlField008-22='u'">Ukjent;</xsl:when>
726
        </xsl:choose>
727
    </xsl:if>
728
    <xsl:if test="$typeOf008='Fil' or $typeOf008='Mus'">
729
        <span class="label">; MÃ¥lgruppe: </span>
730
        <xsl:choose>
731
			<xsl:when test="$controlField008-22='a'">Voksne;</xsl:when>
732
			<xsl:when test="$controlField008-22='j'">Barn og ungdom;</xsl:when>
733
			<xsl:when test="$controlField008-22='1'">Barn i alderen til og med 5 år;</xsl:when>
734
			<xsl:when test="$controlField008-22='m'">Elever på 1. til 3. klassetrinn;</xsl:when>
735
			<xsl:when test="$controlField008-22='n'">Elever på 4. og 5. klassetrinn;</xsl:when>
736
			<xsl:when test="$controlField008-22='o'">Elever på 6. og 7. klassetrinn;</xsl:when>
737
			<xsl:when test="$controlField008-22='p'">Elever på ungdomstrinnet;</xsl:when>
738
			<xsl:when test="$controlField008-22='f'">Spesialisert;</xsl:when>
739
			<xsl:when test="$controlField008-22='q'">Lettlest;</xsl:when>
740
			<xsl:when test="$controlField008-22='r'">For psykisk utviklingshemmede;</xsl:when>
741
			<xsl:when test="$controlField008-22='s'">Storskrift;</xsl:when>
742
			<xsl:when test="$controlField008-22='g'">Generell;</xsl:when>
743
			<xsl:when test="$controlField008-22='u'">Ukjent;</xsl:when>
744
        </xsl:choose>
745
    </xsl:if>
746
    <xsl:if test="$typeOf008='FV'">
747
        <span class="label">; MÃ¥lgruppe: </span>
748
        <xsl:choose>
749
			<xsl:when test="$controlField008-22='a'">Voksne;</xsl:when>
750
			<xsl:when test="$controlField008-22='1'">Voksne over 18 år;</xsl:when>
751
			<xsl:when test="$controlField008-22='2'">Voksne over 15 år;</xsl:when>
752
			<xsl:when test="$controlField008-22='j'">Barn og ungdom;</xsl:when>
753
			<xsl:when test="$controlField008-22='4'">Ungdom over 12 år;</xsl:when>
754
			<xsl:when test="$controlField008-22='5'">Barn over 7 år;</xsl:when>
755
			<xsl:when test="$controlField008-22='6'">Småbarn;</xsl:when>
756
			<xsl:when test="$controlField008-22='f'">Spesialisert;</xsl:when>
757
			<xsl:when test="$controlField008-22='g'">Generell;</xsl:when>
758
			<xsl:when test="$controlField008-22='u'">Ukjent;</xsl:when>
759
        </xsl:choose>
760
    </xsl:if>
761
	</span>
762
</xsl:if>
763
764
	<!-- Utgivelse, distribusjon osv -->
765
    <xsl:if test="marc:datafield[@tag=260]">
766
	<span class="results_summary">
767
    <span class="label">Utgiver: </span>
768
            <xsl:for-each select="marc:datafield[@tag=260]">
769
                    <xsl:call-template name="subfieldSelect">
770
                        <xsl:with-param name="codes">bcg</xsl:with-param>
771
                    </xsl:call-template>
772
            </xsl:for-each>
773
	</span>
774
    </xsl:if>
775
776
    <!-- Parallelltittel (R) -->
777
    <xsl:if test="marc:datafield[@tag=246]">
778
	<span class="results_summary">
779
    <span class="label">Parallelltittel: </span>
780
            <xsl:for-each select="marc:datafield[@tag=246]">
781
                    <xsl:call-template name="subfieldSelect">
782
                        <xsl:with-param name="codes">ab</xsl:with-param>
783
                    </xsl:call-template>
784
            </xsl:for-each>
785
	</span>
786
787
    </xsl:if>
788
789
<!-- Links found in 856$u. This is copied verbatim from MARC21 detail view and should be identical to code in NORMARC detail view (except for $Show856uAsImage='Results'). -->
790
        <xsl:if test="marc:datafield[@tag=856]">
791
        <span class="results_summary online_resources"><span class="label">Online resources: </span>
792
        <xsl:for-each select="marc:datafield[@tag=856]">
793
            <xsl:variable name="SubqText"><xsl:value-of select="marc:subfield[@code='q']"/></xsl:variable>
794
	    <a property="url">
795
	    <xsl:choose>
796
	      <xsl:when test="$OPACTrackClicks='track'">
797
            <xsl:attribute name="href">/cgi-bin/koha/tracklinks.pl?uri=<xsl:value-of select="str:encode-uri(marc:subfield[@code='u'], true())"/>&amp;biblionumber=<xsl:value-of select="$biblionumber"/></xsl:attribute>
798
	      </xsl:when>
799
	      <xsl:when test="$OPACTrackClicks='anonymous'">
800
            <xsl:attribute name="href">/cgi-bin/koha/tracklinks.pl?uri=<xsl:value-of select="str:encode-uri(marc:subfield[@code='u'], true())"/>&amp;biblionumber=<xsl:value-of select="$biblionumber"/></xsl:attribute>
801
	      </xsl:when>
802
	      <xsl:otherwise>
803
                <xsl:attribute name="href"><xsl:value-of select="marc:subfield[@code='u']"/></xsl:attribute>
804
	      </xsl:otherwise>
805
	    </xsl:choose>
806
            <xsl:if test="$OPACURLOpenInNewWindow='1'">
807
                <xsl:attribute name="target">_blank</xsl:attribute>
808
            </xsl:if>
809
            <xsl:choose>
810
            <xsl:when test="($Show856uAsImage='Results' or $Show856uAsImage='Both') and (substring($SubqText,1,6)='image/' or $SubqText='img' or $SubqText='bmp' or $SubqText='cod' or $SubqText='gif' or $SubqText='ief' or $SubqText='jpe' or $SubqText='jpeg' or $SubqText='jpg' or $SubqText='jfif' or $SubqText='png' or $SubqText='svg' or $SubqText='tif' or $SubqText='tiff' or $SubqText='ras' or $SubqText='cmx' or $SubqText='ico' or $SubqText='pnm' or $SubqText='pbm' or $SubqText='pgm' or $SubqText='ppm' or $SubqText='rgb' or $SubqText='xbm' or $SubqText='xpm' or $SubqText='xwd')">
811
                <xsl:element name="img"><xsl:attribute name="src"><xsl:value-of select="marc:subfield[@code='u']"/></xsl:attribute><xsl:attribute name="alt"><xsl:value-of select="marc:subfield[@code='y']"/></xsl:attribute><xsl:attribute name="style">height:100px</xsl:attribute></xsl:element><xsl:text></xsl:text>
812
            </xsl:when>
813
            <xsl:when test="marc:subfield[@code='y' or @code='3' or @code='z']">
814
                <xsl:call-template name="subfieldSelect">
815
                    <xsl:with-param name="codes">y3z</xsl:with-param>
816
                </xsl:call-template>
817
            </xsl:when>
818
            <xsl:when test="$URLLinkText!=''">
819
                <xsl:value-of select="$URLLinkText"/>
820
            </xsl:when>
821
            <xsl:otherwise>
822
                <xsl:text>Click here to access online</xsl:text>
823
            </xsl:otherwise>
824
            </xsl:choose>
825
            </a>
826
            <xsl:choose>
827
            <xsl:when test="position()=last()"><xsl:text>  </xsl:text></xsl:when>
828
            <xsl:otherwise> | </xsl:otherwise>
829
            </xsl:choose>
830
        </xsl:for-each>
831
        </span>
832
        </xsl:if>
833
<!-- End of links found in 856$u -->
834
835
<span class="results_summary">
836
                        <span class="label">Availability: </span>
837
                        <xsl:choose>
838
                             <xsl:when test="count(key('item-by-status', 'available'))=0 and count(key('item-by-status', 'reference'))=0">No items available
839
				   </xsl:when>
840
841
                   <xsl:when test="count(key('item-by-status', 'available'))>0">
842
                   <span class="available">
843
                       <strong><xsl:text>Items available for loan: </xsl:text></strong>
844
                       <xsl:variable name="available_items" select="key('item-by-status', 'available')"/>
845
               <xsl:choose>
846
               <xsl:when test="$singleBranchMode=1">
847
               <xsl:for-each select="$available_items[generate-id() = generate-id(key('item-by-status-and-branch', concat(items:status, ' ', items:homebranch))[1])]">
848
                 <xsl:if test="items:itemcallnumber != '' and items:itemcallnumber"> [<xsl:value-of select="items:itemcallnumber"/>]</xsl:if>
849
               <xsl:text> (</xsl:text>
850
               <xsl:value-of select="count(key('item-by-status-and-branch', concat(items:status, ' ', items:homebranch)))"/>
851
                <xsl:text>)</xsl:text>
852
                <xsl:choose><xsl:when test="position()=last()"><xsl:text>. </xsl:text></xsl:when><xsl:otherwise><xsl:text>, </xsl:text></xsl:otherwise></xsl:choose>
853
            </xsl:for-each>
854
            </xsl:when>
855
               <xsl:otherwise>
856
                       <xsl:for-each select="$available_items[generate-id() = generate-id(key('item-by-status-and-branch', concat(items:status, ' ', items:homebranch))[1])]">
857
                           <xsl:value-of select="items:homebranch"/>
858
						   <xsl:if test="items:itemcallnumber != '' and items:itemcallnumber"> [<xsl:value-of select="items:itemcallnumber"/>]</xsl:if>
859
860
                           <xsl:text> (</xsl:text>
861
                           <xsl:value-of select="count(key('item-by-status-and-branch', concat(items:status, ' ', items:homebranch)))"/>
862
                           <xsl:text>)</xsl:text>
863
<xsl:choose><xsl:when test="position()=last()"><xsl:text>. </xsl:text></xsl:when><xsl:otherwise><xsl:text>, </xsl:text></xsl:otherwise></xsl:choose>
864
                       </xsl:for-each>
865
               </xsl:otherwise>
866
               </xsl:choose>
867
                   </span>
868
                   </xsl:when>
869
870
				   </xsl:choose>
871
872
                   <xsl:choose>
873
                   <xsl:when test="count(key('item-by-status', 'reference'))>0">
874
                   <span class="available">
875
                       <strong><xsl:text>Items available for reference: </xsl:text></strong>
876
                       <xsl:variable name="reference_items"
877
                           select="key('item-by-status', 'reference')"/>
878
                       <xsl:for-each select="$reference_items[generate-id() = generate-id(key('item-by-status-and-branch', concat(items:status, ' ', items:homebranch))[1])]">
879
                           <xsl:if test="$singleBranchMode=0">
880
                               <xsl:value-of select="items:homebranch"/>
881
                           </xsl:if>
882
						   <xsl:if test="items:itemcallnumber != '' and items:itemcallnumber"> [<xsl:value-of select="items:itemcallnumber"/>]</xsl:if>
883
                           <xsl:text> (</xsl:text>
884
                           <xsl:value-of select="count(key('item-by-status-and-branch', concat(items:status, ' ', items:homebranch)))"/>
885
                           <xsl:text>)</xsl:text>
886
                   <xsl:choose><xsl:when test="position()=last()"><xsl:text>. </xsl:text></xsl:when><xsl:otherwise><xsl:text>, </xsl:text></xsl:otherwise></xsl:choose>
887
888
                       </xsl:for-each>
889
                   </span>
890
                   </xsl:when>
891
                   </xsl:choose>
892
893
                   <xsl:if test="count(key('item-by-status', 'Checked out'))>0">
894
                   <span class="unavailable">
895
                       <xsl:text>Checked out (</xsl:text>
896
                       <xsl:value-of select="count(key('item-by-status', 'Checked out'))"/>
897
898
                       <xsl:text>). </xsl:text>
899
				   </span>
900
                   </xsl:if>
901
                   <xsl:if test="count(key('item-by-status', 'Withdrawn'))>0">
902
                   <span class="unavailable">
903
                       <xsl:text>Withdrawn (</xsl:text>
904
                       <xsl:value-of select="count(key('item-by-status', 'Withdrawn'))"/>
905
                       <xsl:text>). </xsl:text>                   </span>
906
907
				   </xsl:if>
908
                    <xsl:if test="count(key('item-by-status', 'Lost'))>0">
909
                   <span class="unavailable">
910
                       <xsl:text>Lost (</xsl:text>
911
                       <xsl:value-of select="count(key('item-by-status', 'Lost'))"/>
912
                       <xsl:text>). </xsl:text>                   </span>
913
				   </xsl:if>
914
915
                    <xsl:if test="count(key('item-by-status', 'Damaged'))>0">
916
                   <span class="unavailable">
917
                       <xsl:text>Damaged (</xsl:text>
918
                       <xsl:value-of select="count(key('item-by-status', 'Damaged'))"/>
919
                       <xsl:text>). </xsl:text>                   </span>
920
                   </xsl:if>
921
                    <xsl:if test="count(key('item-by-status', 'On order'))>0">
922
923
                   <span class="unavailable">
924
                       <xsl:text>On order (</xsl:text>
925
                       <xsl:value-of select="count(key('item-by-status', 'On order'))"/>
926
                       <xsl:text>). </xsl:text>                   </span>
927
                   </xsl:if>
928
                    <xsl:if test="count(key('item-by-status', 'In transit'))>0">
929
                   <span class="unavailable">
930
931
                       <xsl:text>In transit (</xsl:text>
932
                       <xsl:value-of select="count(key('item-by-status', 'In transit'))"/>
933
                       <xsl:text>). </xsl:text>                   </span>
934
                   </xsl:if>
935
                    <xsl:if test="count(key('item-by-status', 'Waiting'))>0">
936
                   <span class="unavailable">
937
                       <xsl:text>On hold (</xsl:text>
938
939
                       <xsl:value-of select="count(key('item-by-status', 'Waiting'))"/>
940
                       <xsl:text>). </xsl:text>                   </span>
941
                   </xsl:if>
942
               </span>
943
944
    </xsl:template>
945
946
    <xsl:template name="termsOfAddress">
947
        <xsl:if test="marc:subfield[@code='b' or @code='c']">
948
            <xsl:call-template name="chopPunctuation">
949
                <xsl:with-param name="chopString">
950
                    <xsl:call-template name="subfieldSelect">
951
                        <xsl:with-param name="codes">bc</xsl:with-param>
952
                    </xsl:call-template>
953
                </xsl:with-param>
954
            </xsl:call-template>
955
        </xsl:if>
956
    </xsl:template>
957
958
    <xsl:template name="nameDate">
959
        <xsl:for-each select="marc:subfield[@code='d']">
960
            <xsl:call-template name="chopPunctuation">
961
                <xsl:with-param name="chopString" select="."/>
962
            </xsl:call-template>
963
        </xsl:for-each>
964
    </xsl:template>
965
966
    <xsl:template name="role">
967
        <xsl:for-each select="marc:subfield[@code='e']">
968
                    <xsl:value-of select="."/>
969
        </xsl:for-each>
970
        <xsl:for-each select="marc:subfield[@code='4']">
971
                    <xsl:value-of select="."/>
972
        </xsl:for-each>
973
    </xsl:template>
974
975
    <xsl:template name="specialSubfieldSelect">
976
        <xsl:param name="anyCodes"/>
977
        <xsl:param name="axis"/>
978
        <xsl:param name="beforeCodes"/>
979
        <xsl:param name="afterCodes"/>
980
        <xsl:variable name="str">
981
            <xsl:for-each select="marc:subfield">
982
                <xsl:if test="contains($anyCodes, @code) or (contains($beforeCodes,@code) and following-sibling::marc:subfield[@code=$axis]) or (contains($afterCodes,@code) and preceding-sibling::marc:subfield[@code=$axis])">
983
                    <xsl:value-of select="text()"/>
984
                    <xsl:text> </xsl:text>
985
                </xsl:if>
986
            </xsl:for-each>
987
        </xsl:variable>
988
        <xsl:value-of select="substring($str,1,string-length($str)-1)"/>
989
    </xsl:template>
990
991
    <xsl:template name="subtitle">
992
        <xsl:if test="marc:subfield[@code='b']">
993
                <xsl:call-template name="chopPunctuation">
994
                    <xsl:with-param name="chopString">
995
                        <xsl:value-of select="marc:subfield[@code='b']"/>
996
997
                        <!--<xsl:call-template name="subfieldSelect">
998
                            <xsl:with-param name="codes">b</xsl:with-param>
999
                        </xsl:call-template>-->
1000
                    </xsl:with-param>
1001
                </xsl:call-template>
1002
        </xsl:if>
1003
    </xsl:template>
1004
1005
    <xsl:template name="chopBrackets">
1006
        <xsl:param name="chopString"></xsl:param>
1007
        <xsl:variable name="string">
1008
            <xsl:call-template name="chopPunctuation">
1009
                <xsl:with-param name="chopString" select="$chopString"></xsl:with-param>
1010
            </xsl:call-template>
1011
        </xsl:variable>
1012
        <xsl:if test="substring($string, 1,1)='['">
1013
            <xsl:value-of select="substring($string,2, string-length($string)-2)"></xsl:value-of>
1014
        </xsl:if>
1015
        <xsl:if test="substring($string, 1,1)!='['">
1016
            <xsl:value-of select="$string"></xsl:value-of>
1017
        </xsl:if>
1018
    </xsl:template>
1019
1020
</xsl:stylesheet>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/NORMARCslimUtils.xsl (-260 lines)
Lines 1-260 Link Here
1
<?xml version='1.0'?>
2
<!DOCTYPE stylesheet>
3
<xsl:stylesheet version="1.0"
4
  xmlns:marc="http://www.loc.gov/MARC21/slim"
5
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
6
  xmlns:str="http://exslt.org/strings"
7
  exclude-result-prefixes="str">
8
	<xsl:template name="datafield">
9
		<xsl:param name="tag"/>
10
		<xsl:param name="ind1"><xsl:text> </xsl:text></xsl:param>
11
		<xsl:param name="ind2"><xsl:text> </xsl:text></xsl:param>
12
		<xsl:param name="subfields"/>
13
		<xsl:element name="datafield">
14
			<xsl:attribute name="tag">
15
				<xsl:value-of select="$tag"/>
16
			</xsl:attribute>
17
			<xsl:attribute name="ind1">
18
				<xsl:value-of select="$ind1"/>
19
			</xsl:attribute>
20
			<xsl:attribute name="ind2">
21
				<xsl:value-of select="$ind2"/>
22
			</xsl:attribute>
23
			<xsl:copy-of select="$subfields"/>
24
		</xsl:element>
25
	</xsl:template>
26
27
	<xsl:template name="subfieldSelect">
28
		<xsl:param name="codes"/>
29
		<xsl:param name="delimeter"><xsl:text> </xsl:text></xsl:param>
30
		<xsl:param name="subdivCodes"/>
31
		<xsl:param name="subdivDelimiter"/>
32
        <xsl:param name="prefix"/>
33
        <xsl:param name="suffix"/>
34
        <xsl:param name="urlencode"/>
35
		<xsl:variable name="str">
36
			<xsl:for-each select="marc:subfield">
37
				<xsl:if test="contains($codes, @code)">
38
                    <xsl:if test="contains($subdivCodes, @code)">
39
                        <xsl:value-of select="$subdivDelimiter"/>
40
                    </xsl:if>
41
					<xsl:value-of select="$prefix"/><xsl:value-of select="text()"/><xsl:value-of select="$suffix"/><xsl:value-of select="$delimeter"/>
42
				</xsl:if>
43
			</xsl:for-each>
44
		</xsl:variable>
45
        <xsl:choose>
46
            <xsl:when test="$urlencode=1">
47
                <xsl:value-of select="str:encode-uri(substring($str,1,string-length($str)-string-length($delimeter)), true())"/>
48
            </xsl:when>
49
            <xsl:otherwise>
50
                <xsl:value-of select="substring($str,1,string-length($str)-string-length($delimeter))"/>
51
            </xsl:otherwise>
52
        </xsl:choose>
53
	</xsl:template>
54
55
	<xsl:template name="buildSpaces">
56
		<xsl:param name="spaces"/>
57
		<xsl:param name="char"><xsl:text> </xsl:text></xsl:param>
58
		<xsl:if test="$spaces>0">
59
			<xsl:value-of select="$char"/>
60
			<xsl:call-template name="buildSpaces">
61
				<xsl:with-param name="spaces" select="$spaces - 1"/>
62
				<xsl:with-param name="char" select="$char"/>
63
			</xsl:call-template>
64
		</xsl:if>
65
	</xsl:template>
66
67
  <xsl:template name="buildBiblioDefaultViewURL">
68
    <xsl:param name="BiblioDefaultView"/>
69
    <xsl:choose>
70
        <xsl:when test="$BiblioDefaultView='normal'">
71
            <xsl:text>/cgi-bin/koha/opac-detail.pl?biblionumber=</xsl:text>
72
        </xsl:when>
73
        <xsl:when test="$BiblioDefaultView='isbd'">
74
            <xsl:text>/cgi-bin/koha/opac-ISBDdetail.pl?biblionumber=</xsl:text>
75
        </xsl:when>
76
        <xsl:when test="$BiblioDefaultView='marc'">
77
            <xsl:text>/cgi-bin/koha/opac-MARCdetail.pl?biblionumber=</xsl:text>
78
        </xsl:when>
79
        <xsl:otherwise>
80
            <xsl:text>/cgi-bin/koha/opac-detail.pl?biblionumber=</xsl:text>
81
        </xsl:otherwise>
82
    </xsl:choose>
83
  </xsl:template>
84
85
	<xsl:template name="chopPunctuation">
86
		<xsl:param name="chopString"/>
87
		<xsl:variable name="length" select="string-length($chopString)"/>
88
		<xsl:choose>
89
			<xsl:when test="$length=0"/>
90
			<xsl:when test="contains('.:,;/ ', substring($chopString,$length,1))">
91
				<xsl:call-template name="chopPunctuation">
92
					<xsl:with-param name="chopString" select="substring($chopString,1,$length - 1)"/>
93
				</xsl:call-template>
94
			</xsl:when>
95
			<xsl:when test="not($chopString)"/>
96
			<xsl:otherwise><xsl:value-of select="$chopString"/></xsl:otherwise>
97
		</xsl:choose>
98
<xsl:text> </xsl:text>
99
	</xsl:template>
100
101
	<!-- Function extractControlNumber is used to extract the control number (record number) from MARC tags 773/80/85 [etc.] subfield $w.
102
	     Parameter: control number string.
103
	     Assumes LOC convention: (OrgCode)recordNumber.
104
	     If OrgCode is not present, return full string.
105
	     Additionally, handle various brackets/parentheses. Chop leading and trailing spaces.
106
         Returns the value URI-encoded.
107
	-->
108
	<xsl:template name="extractControlNumber">
109
	    <xsl:param name="subfieldW"/>
110
	    <xsl:variable name="tranW" select="translate($subfieldW,']})&gt;','))))')"/>
111
	    <xsl:choose>
112
	      <xsl:when test="contains($tranW,')')">
113
	        <xsl:value-of select="str:encode-uri(normalize-space(translate(substring-after($tranW,')'),'[]{}()&lt;&gt;','')), true())"/>
114
	      </xsl:when>
115
	      <xsl:otherwise>
116
	        <xsl:value-of select="str:encode-uri(normalize-space($subfieldW), true())"/>
117
	      </xsl:otherwise>
118
	    </xsl:choose>
119
	</xsl:template>
120
121
<xsl:template name="nameABCDQ">
122
<xsl:call-template name="chopPunctuation">
123
<xsl:with-param name="chopString">
124
<xsl:call-template name="subfieldSelect">
125
<xsl:with-param name="codes">aq</xsl:with-param>
126
</xsl:call-template>
127
</xsl:with-param>
128
<xsl:with-param name="punctuation">
129
<xsl:text>:,;/ </xsl:text>
130
</xsl:with-param>
131
</xsl:call-template>
132
<xsl:call-template name="termsOfAddress"/>
133
</xsl:template>
134
135
<xsl:template name="nameABCDN">
136
<xsl:for-each select="marc:subfield[@code='a']">
137
<xsl:call-template name="chopPunctuation">
138
<xsl:with-param name="chopString" select="."/>
139
</xsl:call-template>
140
</xsl:for-each>
141
<xsl:for-each select="marc:subfield[@code='b']">
142
<xsl:value-of select="."/>
143
</xsl:for-each>
144
<xsl:if test="marc:subfield[@code='c'] or marc:subfield[@code='d'] or marc:subfield[@code='n']">
145
<xsl:call-template name="subfieldSelect">
146
<xsl:with-param name="codes">cdn</xsl:with-param>
147
</xsl:call-template>
148
</xsl:if>
149
</xsl:template>
150
151
<xsl:template name="nameACDEQ">
152
<xsl:call-template name="subfieldSelect">
153
<xsl:with-param name="codes">acdeq</xsl:with-param>
154
</xsl:call-template>
155
</xsl:template>
156
157
<xsl:template name="termsOfAddress">
158
<xsl:if test="marc:subfield[@code='b' or @code='c']">
159
<xsl:call-template name="chopPunctuation">
160
<xsl:with-param name="chopString">
161
<xsl:call-template name="subfieldSelect">
162
<xsl:with-param name="codes">bc</xsl:with-param>
163
</xsl:call-template>
164
</xsl:with-param>
165
</xsl:call-template>
166
</xsl:if>
167
</xsl:template>
168
169
    <!-- Function m880Select:  Display Alternate Graphic Representation (MARC 880) for selected latin "base"tags
170
        - should be called immediately before the corresonding latin tags are processed
171
        - tags in right-to-left languages are displayed floating right
172
        * Parameter:
173
           + basetags: display these tags if found in linkage section ( subfield 6) of tag 880
174
           + codes: display these subfields codes
175
        * Options:
176
            - class: wrap output in <span class="$class">...</span>
177
            - label: prefix each(!) tag with label $label
178
            - bibno: link to biblionumber $bibno
179
            - index: build a search link using index $index with subfield $a as key; if subfield $9 is present use index 'an' with key $9 instead.
180
         * Limitations:
181
            - displays every field on a separate line (to switch between rtl and ltr)
182
         * Pitfalls:
183
           (!) output might be empty
184
    -->
185
    <xsl:template name="m880Select">
186
         <xsl:param name="basetags"/> <!-- e.g.  100,700,110,710 -->
187
        <xsl:param name="codes"/> <!-- e.g. abc  -->
188
        <xsl:param name="class"/> <!-- e.g. results_summary -->
189
        <xsl:param name="label"/> <!-- e.g.  Edition -->
190
        <xsl:param name="bibno"/>
191
        <xsl:param name="index"/> <!-- e.g.  au -->
192
193
        <xsl:for-each select="marc:datafield[@tag=880]">
194
            <xsl:variable name="code6" select="marc:subfield[@code=6]"/>
195
            <xsl:if test="contains(string($basetags), substring($code6,1,3))">
196
                <span>
197
                    <xsl:if test="boolean($class)">
198
                        <xsl:attribute name="class"><xsl:value-of select="$class"/></xsl:attribute>
199
                    </xsl:if>
200
                    <xsl:choose>
201
                        <!-- display right-to-left tags floating right of their left-to-right counterparts -->
202
                        <xsl:when test="substring($code6,10,2) ='/r'">
203
                            <xsl:attribute name="style">display:block; text-align:right; float:right; width:50%; padding-left:20px</xsl:attribute>
204
                            <xsl:attribute name="dir">rtl</xsl:attribute>
205
                        </xsl:when>
206
                        <xsl:otherwise>
207
                            <xsl:attribute name="style">display:block; </xsl:attribute>
208
                        </xsl:otherwise>
209
                    </xsl:choose>
210
                    <xsl:if test="boolean($label)">
211
                        <span class="label">
212
                            <xsl:value-of select="$label"/>
213
                        </span>
214
                    </xsl:if>
215
                    <xsl:variable name="str">
216
                        <xsl:for-each select="marc:subfield">
217
                            <xsl:if test="contains($codes, @code)">
218
                                <xsl:value-of select="text()"/>
219
                                <xsl:text> </xsl:text>
220
                            </xsl:if>
221
                        </xsl:for-each>
222
                    </xsl:variable>
223
                    <xsl:if test="string-length($str) &gt; 0">
224
                        <xsl:choose>
225
                            <xsl:when test="boolean($bibno)">
226
                                <a>
227
                                    <xsl:attribute name="href">/cgi-bin/koha/opac-detail.pl?biblionumber=<xsl:value-of  select="str:encode-uri($bibno, true())"/></xsl:attribute>
228
                                    <xsl:value-of select="$str"/>
229
                                </a>
230
                            </xsl:when>
231
                           <xsl:when test="boolean($index) and boolean(marc:subfield[@code=9])">
232
                                <a>
233
                                    <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=an:<xsl:value-of  select="str:encode-uri(marc:subfield[@code=9], true())"/></xsl:attribute>
234
                                    <xsl:value-of select="$str"/>
235
                                </a>
236
                            </xsl:when>
237
                            <xsl:when test="boolean($index)">
238
                                <a>
239
                                    <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=<xsl:value-of  select="$index"/>:<xsl:value-of  select="str:encode-uri(marc:subfield[@code='a'], true())"/></xsl:attribute>
240
                                    <xsl:value-of select="$str"/>
241
                                </a>
242
                            </xsl:when>
243
                            <xsl:otherwise>
244
                                <xsl:value-of select="$str"/>
245
                            </xsl:otherwise>
246
                        </xsl:choose>
247
                    </xsl:if>
248
                </span>
249
            </xsl:if>
250
        </xsl:for-each>
251
252
    </xsl:template>
253
254
</xsl:stylesheet>
255
256
<!-- Stylus Studio meta-information - (c)1998-2002 eXcelon Corp.
257
<metaInformation>
258
<scenarios/><MapperInfo srcSchemaPath="" srcSchemaRoot="" srcSchemaPathIsRelative="yes" srcSchemaInterpretAsXML="no" destSchemaPath="" destSchemaRoot="" destSchemaPathIsRelative="yes" destSchemaInterpretAsXML="no"/>
259
</metaInformation>
260
-->
(-)a/misc/search_tools/export_elasticsearch_mappings.pl (-2 / +2 lines)
Lines 37-43 Export search_marc_map, search_marc_to_field and search_field tables to YAML. Link Here
37
37
38
=over
38
=over
39
39
40
=item B<-t|--type>=C<marc21|unimarc|normarc>
40
=item B<-t|--type>=C<marc21|unimarc>
41
41
42
Only export a specific marc type. All if empty.
42
Only export a specific marc type. All if empty.
43
43
Lines 74-80 GetOptions( Link Here
74
74
75
pod2usage( -exitstatus => 0, -verbose => 2 ) if $man;
75
pod2usage( -exitstatus => 0, -verbose => 2 ) if $man;
76
76
77
if ( $type && $type !~ /^(marc21|unimarc|normarc)$/ ) {
77
if ( $type && $type !~ /^(marc21|unimarc)$/ ) {
78
    print "Bad marc type provided.\n";
78
    print "Bad marc type provided.\n";
79
    pod2usage(1);
79
    pod2usage(1);
80
}
80
}
(-)a/misc/translator/LangInstaller.pm (-2 / +2 lines)
Lines 93-99 sub new { Link Here
93
    }
93
    }
94
94
95
    # MARC flavours (hardcoded list)
95
    # MARC flavours (hardcoded list)
96
    for ( "MARC21", "UNIMARC", "NORMARC" ) {
96
    for ( "MARC21", "UNIMARC" ) {
97
        # search for strings on staff & opac marc files
97
        # search for strings on staff & opac marc files
98
        my $dirs = C4::Context->config('intrahtdocs') . '/prog';
98
        my $dirs = C4::Context->config('intrahtdocs') . '/prog';
99
        opendir $fh, C4::Context->config('opachtdocs');
99
        opendir $fh, C4::Context->config('opachtdocs');
Lines 280-286 sub install_tmpl { Link Here
280
            # if installing MARC po file, only touch corresponding files
280
            # if installing MARC po file, only touch corresponding files
281
            my $marc     = ( $trans->{name} =~ /MARC/ )?"-m \"$trans->{name}\"":"";            # for MARC translations
281
            my $marc     = ( $trans->{name} =~ /MARC/ )?"-m \"$trans->{name}\"":"";            # for MARC translations
282
            # if not installing MARC po file, ignore all MARC files
282
            # if not installing MARC po file, ignore all MARC files
283
            @nomarc      = ( 'marc21', 'unimarc', 'normarc' ) if ( $trans->{name} !~ /MARC/ ); # hardcoded MARC variants
283
            @nomarc      = ( 'marc21', 'unimarc' ) if ( $trans->{name} !~ /MARC/ ); # hardcoded MARC variants
284
284
285
            system
285
            system
286
                "$self->{process} install " .
286
                "$self->{process} install " .
(-)a/opac/opac-detail.pl (-1 / +1 lines)
Lines 549-555 $template->param( Link Here
549
if ( C4::Context->preference('EasyAnalyticalRecords') ) {
549
if ( C4::Context->preference('EasyAnalyticalRecords') ) {
550
    # adding items linked via host biblios
550
    # adding items linked via host biblios
551
    my $analyticfield = '773';
551
    my $analyticfield = '773';
552
    if ($marcflavour eq 'MARC21' || $marcflavour eq 'NORMARC'){
552
    if ($marcflavour eq 'MARC21'){
553
        $analyticfield = '773';
553
        $analyticfield = '773';
554
    } elsif ($marcflavour eq 'UNIMARC') {
554
    } elsif ($marcflavour eq 'UNIMARC') {
555
        $analyticfield = '461';
555
        $analyticfield = '461';
(-)a/opac/unapi (-13 lines)
Lines 73-91 my $format_to_stylesheet_map = { Link Here
73
        'rss2-full'    => 'MARC21slim2RSS2.xsl',
73
        'rss2-full'    => 'MARC21slim2RSS2.xsl',
74
        'srw_dc'       => 'MARC21slim2SRWDC.xsl',
74
        'srw_dc'       => 'MARC21slim2SRWDC.xsl',
75
    },
75
    },
76
    'NORMARC' => {
77
        'marcxml'      => 'identity.xsl',
78
        'marcxml-full' => 'identity.xsl',
79
        'mods'         => 'MARC21slim2MODS.xsl',
80
        'mods-full'    => 'MARC21slim2MODS.xsl',
81
        'mods3'        => 'MARC21slim2MODS3-1.xsl',
82
        'mods3-full'   => 'MARC21slim2MODS3-1.xsl',
83
        'oai_dc'       => 'MARC21slim2OAIDC.xsl',
84
        'rdfdc',       => 'MARC21slim2RDFDC.xsl',
85
        'rss2'         => 'MARC21slim2RSS2.xsl',
86
        'rss2-full'    => 'MARC21slim2RSS2.xsl',
87
        'srw_dc'       => 'MARC21slim2SRWDC.xsl',
88
    },
89
    'UNIMARC' => {
76
    'UNIMARC' => {
90
        'marcxml'      => 'identity.xsl',
77
        'marcxml'      => 'identity.xsl',
91
        'marcxml-full' => 'identity.xsl',
78
        'marcxml-full' => 'identity.xsl',
(-)a/t/Biblio/TransformHtmlToXml.t (-7 / +1 lines)
Lines 17-23 Link Here
17
17
18
use Modern::Perl;
18
use Modern::Perl;
19
19
20
use Test::More tests => 3;
20
use Test::More tests => 2;
21
use t::lib::Mocks;
21
use t::lib::Mocks;
22
22
23
use XML::Simple;
23
use XML::Simple;
Lines 71-79 subtest "->TransformHtmlToXml (UNIMARC) tests" => sub { Link Here
71
    plan tests => 4;
71
    plan tests => 4;
72
    run_tests('UNIMARC');
72
    run_tests('UNIMARC');
73
};
73
};
74
75
subtest "->TransformHtmlToXml (NORMARC) tests" => sub {
76
    plan tests => 4;
77
    run_tests('NORMARC');
78
};
79
(-)a/t/db_dependent/Acquisition.t (-6 / +1 lines)
Lines 19-25 use Modern::Perl; Link Here
19
19
20
use POSIX qw(strftime);
20
use POSIX qw(strftime);
21
21
22
use Test::More tests => 67;
22
use Test::More tests => 66;
23
use t::lib::Mocks;
23
use t::lib::Mocks;
24
use Koha::Database;
24
use Koha::Database;
25
use Koha::DateUtils qw(dt_from_string output_pref);
25
use Koha::DateUtils qw(dt_from_string output_pref);
Lines 620-630 subtest 'UNIMARC' => sub { Link Here
620
    run_flavoured_tests('UNIMARC');
620
    run_flavoured_tests('UNIMARC');
621
};
621
};
622
622
623
subtest 'NORMARC' => sub {
624
    plan tests => 2;
625
    run_flavoured_tests('NORMARC');
626
};
627
628
### Functions required for "flavoured" tests
623
### Functions required for "flavoured" tests
629
sub get_title_field {
624
sub get_title_field {
630
    my $marc_flavour = C4::Context->preference('marcflavour');
625
    my $marc_flavour = C4::Context->preference('marcflavour');
(-)a/t/db_dependent/Biblio.t (-8 / +1 lines)
Lines 17-23 Link Here
17
17
18
use Modern::Perl;
18
use Modern::Perl;
19
19
20
use Test::More tests => 15;
20
use Test::More tests => 14;
21
use Test::MockModule;
21
use Test::MockModule;
22
use Test::Warn;
22
use Test::Warn;
23
use List::MoreUtils qw( uniq );
23
use List::MoreUtils qw( uniq );
Lines 614-626 subtest 'UNIMARC' => sub { Link Here
614
    $schema->storage->txn_begin;
614
    $schema->storage->txn_begin;
615
};
615
};
616
616
617
subtest 'NORMARC' => sub {
618
    plan tests => 47;
619
    run_tests('NORMARC');
620
    $schema->storage->txn_rollback;
621
    $schema->storage->txn_begin;
622
};
623
624
subtest 'IsMarcStructureInternal' => sub {
617
subtest 'IsMarcStructureInternal' => sub {
625
    plan tests => 9;
618
    plan tests => 9;
626
    my $tagslib = GetMarcStructure();
619
    my $tagslib = GetMarcStructure();
(-)a/t/db_dependent/www/batch.t (-1 lines)
Lines 35-41 my $xml = XMLin($koha_conf); Link Here
35
use C4::Context;
35
use C4::Context;
36
my $marcflavour = C4::Context->preference('marcflavour') || 'MARC21';
36
my $marcflavour = C4::Context->preference('marcflavour') || 'MARC21';
37
37
38
# For the purpose of this test, we can reasonably take MARC21 and NORMARC to be the same
39
my $file =
38
my $file =
40
  $marcflavour eq 'UNIMARC'
39
  $marcflavour eq 'UNIMARC'
41
  ? "$testdir/data/unimarcrecord.mrc"
40
  ? "$testdir/data/unimarcrecord.mrc"
(-)a/t/db_dependent/www/search_utf8.t (-2 lines)
Lines 44-50 my $xml = XMLin($koha_conf); Link Here
44
44
45
my $marcflavour = C4::Context->preference('marcflavour') || 'MARC21';
45
my $marcflavour = C4::Context->preference('marcflavour') || 'MARC21';
46
46
47
# For the purpose of this test, we can reasonably take MARC21 and NORMARC to be the same
48
my $file1 =
47
my $file1 =
49
  $marcflavour eq 'UNIMARC'
48
  $marcflavour eq 'UNIMARC'
50
  ? "$testdir/data/unimarcutf8record.mrc"
49
  ? "$testdir/data/unimarcutf8record.mrc"
51
- 

Return to bug 18984