More work to toolbars and menus. Adding experimental YUI-based toolbar to detail...
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / catalogue / MARCdetail.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Catalogue &rsaquo; MARC Details for <!-- TMPL_VAR NAME="title" --></title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 <script language="JavaScript" type="text/javascript">
5 function active(numlayer){
6     for (i=0; i <= 10 ; i++ ) {
7         var tab = document.getElementById(i+'XX');
8         if (numlayer==i) {
9             tab.setAttribute("class","content_visible");
10             var tabactive=document.getElementById('link'+i);
11             tabactive.removeAttribute("class");
12             tabactive.setAttribute("class","tab_active");
13         } else {
14             tab.setAttribute("class","content_hidden");
15             try {
16                 var tabactive=document.getElementById('link'+i);
17                 tabactive.removeAttribute("class");
18                 tabactive.setAttribute("class","tab_inactive");
19             }
20             catch(e){};
21         }
22     }
23 }
24
25 function confirm_deletion(count) {
26
27          var is_confirmed;
28         if (count>0){
29                 is_confirmed= alert('you have [ '+ count +' ] item(s) linked \n you must delete all items before delete this biblio');
30         }
31     else{
32                     is_confirmed= confirm('Are you sure you want to delete this biblio? ');
33         }
34
35      if (is_confirmed) {
36         if (count=0){
37                         window.location="/cgi-bin/koha/cataloguing/addbiblio.pl?op=delete&amp;biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->";
38                 }
39     }
40 }
41
42 function Dopop(link) {
43     window.open(link,'popup','width=500,height=400,toolbar=false,scrollbars=yes');
44 }
45
46 function Changefwk(FwkList) {
47         var fwk = FwkList.options[FwkList.selectedIndex].value;
48         window.location = "MARCdetail.pl?biblionumber=<!--TMPL_VAR Name="biblionumber"-->&frameworkcode="+fwk;
49 }
50
51 function Addbiblio(op) {
52         var fwk = document.forms['f'].Frameworks.options[document.forms['f'].Frameworks.selectedIndex].value;
53         window.location = "../cataloguing/addbiblio.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->&frameworkcode="+fwk+"&op="+op; 
54 }
55
56 </script>
57 </head>
58 <body>
59
60 <!-- TMPL_INCLUDE NAME="header.inc" -->
61 <!-- TMPL_INCLUDE NAME="cat-search.inc" -->
62
63 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/catalogue/search.pl">Catalogue</a>  &rsaquo; MARC Details for <i><!-- TMPL_VAR NAME="title" --></i></div>
64
65 <div id="doc3" class="yui-t2">
66    
67    <div id="bd">
68         <div id="yui-main">
69         <div class="yui-b">
70 <!-- TMPL_INCLUDE NAME="cat-toolbar.inc" -->
71
72 <!-- TMPL_UNLESS name="popup" -->
73     <h1>MARC biblio : <!-- TMPL_VAR NAME="biblionumber" --></h1>
74     
75
76 <!-- /TMPL_UNLESS -->
77
78     <p><b>With Framework :<!--TMPL_VAR Name="framework" --></b></p>
79     
80     <div id="tabs">
81         <!-- TMPL_IF NAME="0XX" -->
82             <a href="javascript:active(0)" class="tab_active" id="link0">0</a>
83         <!-- /TMPL_IF -->
84         <!-- TMPL_IF NAME="1XX" -->
85             <a href="javascript:active(1)" class="tab_inactive" id="link1">1</a>
86         <!-- /TMPL_IF -->
87         <!-- TMPL_IF NAME="2XX" -->
88             <a href="javascript:active(2)" class="tab_inactive" id="link2">2</a>
89         <!-- /TMPL_IF -->
90         <!-- TMPL_IF NAME="3XX" -->
91             <a href="javascript:active(3)" class="tab_inactive" id="link3">3</a>
92         <!-- /TMPL_IF -->
93         <!-- TMPL_IF NAME="4XX" -->
94             <a href="javascript:active(4)" class="tab_inactive" id="link4">4</a>
95         <!-- /TMPL_IF -->
96         <!-- TMPL_IF NAME="5XX" -->
97             <a href="javascript:active(5)" class="tab_inactive" id="link5">5</a>
98         <!-- /TMPL_IF -->
99         <!-- TMPL_IF NAME="6XX" -->
100             <a href="javascript:active(6)" class="tab_inactive" id="link6">6</a>
101         <!-- /TMPL_IF -->
102         <!-- TMPL_IF NAME="7XX" -->
103             <a href="javascript:active(7)" class="tab_inactive" id="link7">7</a>
104         <!-- /TMPL_IF -->
105         <!-- TMPL_IF NAME="8XX" -->
106             <a href="javascript:active(8)" class="tab_inactive" id="link8">8</a>
107         <!-- /TMPL_IF -->
108         <!-- TMPL_IF NAME="9XX" -->
109             <a href="javascript:active(9)" class="tab_inactive" id="link9">9</a>
110         <!-- /TMPL_IF -->
111             <a href="javascript:active(10)" class="tab_inactive" id="link10">Items</a>
112     </div>
113
114     <div name="0XX" id="0XX" class="content_visible">
115         <!-- TMPL_LOOP NAME="0XX" -->
116                 <!-- TMPL_IF name="tag" -->
117                         <div class="tag">
118                     <div class="tag_title">
119                         <!-- TMPL_VAR NAME="tag" -->
120                     </div>
121                 <!-- TMPL_ELSE -->
122                     <div class="tag">
123                 <!-- /TMPL_IF -->
124             <!-- TMPL_LOOP NAME="subfield" -->
125                 <p class="subfield_line">
126                     <label class="labelsubfield">&nbsp;
127                     <!-- TMPL_UNLESS name="hide_marc" --><b><!-- TMPL_VAR NAME="marc_subfield" --></b><!-- /TMPL_UNLESS -->
128                     <span title="<!-- TMPL_VAR name="long_desc" -->"><!-- TMPL_VAR NAME="short_desc" --></span></label>
129                     <!-- TMPL_VAR NAME="marc_value" -->
130                     <!-- TMPL_IF name="link" -->
131                         <a href="/cgi-bin/koha/catalogue/search.pl?op=do_search&amp;marclist=<!-- TMPL_VAR NAME="link" -->&amp;operator==&amp;type=intranet&amp;value=<!-- TMPL_VAR NAME="marc_value" ESCAPE="URL" -->">
132                             <img border="0" src="<!-- TMPL_VAR NAME="interface" -->/<!-- TMPL_VAR NAME="theme" -->/images/filefind.png" height="15" title="Search on <!-- TMPL_VAR name="marc_value" -->" alt="Search on <!-- TMPL_VAR name="marc_value" -->" />
133                         </a>
134                     <!-- /TMPL_IF -->
135                     <!-- TMPL_IF NAME="authority" -->
136                         <a href="/cgi-bin/koha/authorities/detail.pl?authid=<!-- TMPL_VAR name="authority" -->" class="button">Auth</a>
137                     <!-- /TMPL_IF -->
138                 </p>
139             <!-- /TMPL_LOOP -->
140             </div>
141             </div> <!-- class='tag' -->
142         <!-- /TMPL_LOOP -->
143     </div>
144     
145     <div id="1XX" class="content_hidden">
146         <!-- TMPL_LOOP NAME="1XX" -->
147                 <!-- TMPL_IF name="tag" -->
148                     <div class="tag">
149                     <div class="tag_title">
150                         <!-- TMPL_VAR NAME="tag" -->
151                     </div>
152                 <!-- TMPL_ELSE -->
153                     <div class="tag">
154                 <!-- /TMPL_IF -->
155             <!-- TMPL_LOOP NAME="subfield" -->
156                 <p>
157                     <label class="labelsubfield">&nbsp;
158                     <!-- TMPL_UNLESS name="hide_marc" --><b><!-- TMPL_VAR NAME="marc_subfield" --></b><!-- /TMPL_UNLESS -->
159                     <span title="<!-- TMPL_VAR name="long_desc" -->"><!-- TMPL_VAR NAME="short_desc" --></span></label>
160                     <!-- TMPL_VAR NAME="marc_value" -->
161                     <!-- TMPL_IF name="link" -->
162                         <a href="/cgi-bin/koha/catalogue/search.pl?op=do_search&amp;marclist=<!-- TMPL_VAR NAME="link" -->&amp;operator==&amp;type=intranet&amp;value=<!-- TMPL_VAR NAME="marc_value" ESCAPE="URL" -->">
163                             <img border="0" src="<!-- TMPL_VAR NAME="interface" -->/<!-- TMPL_VAR NAME="theme" -->/images/filefind.png" height="15" title="Search on <!-- TMPL_VAR name="marc_value" -->" alt="Search on <!-- TMPL_VAR name="marc_value" -->" />
164                         </a>
165                     <!-- /TMPL_IF -->
166                     <!-- TMPL_IF NAME="authority" -->
167                         <a href="/cgi-bin/koha/authorities/detail.pl?authid=<!-- TMPL_VAR name="authority" -->" class="button">Auth</a>
168                     <!-- /TMPL_IF -->
169                 </p>
170             <!-- /TMPL_LOOP -->
171             </div>
172             </div>
173         <!-- /TMPL_LOOP -->
174     </div>
175     
176     <div id="2XX" class="content_hidden">
177         <!-- TMPL_LOOP NAME="2XX" -->
178                 <!-- TMPL_IF name="tag" -->
179                     <div class="tag">
180                     <div class="tag_title">
181                         <!-- TMPL_VAR NAME="tag" -->
182                     </div>
183                 <!-- TMPL_ELSE -->
184                     <div class="tag">
185                 <!-- /TMPL_IF -->
186             <!-- TMPL_LOOP NAME="subfield" -->
187                 <p>
188                     <label class="labelsubfield">&nbsp;
189                     <!-- TMPL_UNLESS name="hide_marc" --><b><!-- TMPL_VAR NAME="marc_subfield" --></b><!-- /TMPL_UNLESS -->
190                     <span title="<!-- TMPL_VAR name="long_desc" -->"><!-- TMPL_VAR NAME="short_desc" --></span></label>
191                     <!-- TMPL_VAR NAME="marc_value" -->
192                     <!-- TMPL_IF name="link" -->
193                         <a href="/cgi-bin/koha/catalogue/search.pl?op=do_search&amp;marclist=<!-- TMPL_VAR NAME="link" -->&amp;operator==&amp;type=intranet&amp;value=<!-- TMPL_VAR NAME="marc_value" ESCAPE="URL" -->">
194                             <img border="0" src="<!-- TMPL_VAR NAME="interface" -->/<!-- TMPL_VAR NAME="theme" -->/images/filefind.png" height="15" title="Search on <!-- TMPL_VAR name="marc_value" -->" alt="Search on <!-- TMPL_VAR name="marc_value" -->" />
195                         </a>
196                     <!-- /TMPL_IF -->
197                     <!-- TMPL_IF NAME="authority" -->
198                         <a href="/cgi-bin/koha/authorities/detail.pl?authid=<!-- TMPL_VAR name="authority" -->" class="button">Auth</a>
199                     <!-- /TMPL_IF -->
200                 </p>
201             <!-- /TMPL_LOOP -->
202             </div>
203             </div>
204         <!-- /TMPL_LOOP -->
205     </div>
206     
207     <div id="3XX" class="content_hidden">
208         <!-- TMPL_LOOP NAME="3XX" -->
209                 <!-- TMPL_IF name="tag" -->
210                     <div class="tag">
211                     <div class="tag_title">
212                         <!-- TMPL_VAR NAME="tag" -->
213                     </div>
214                 <!-- TMPL_ELSE -->
215                     <div class="tag">
216                 <!-- /TMPL_IF -->
217             <!-- TMPL_LOOP NAME="subfield" -->
218                 <p>
219                     <label class="labelsubfield">&nbsp;
220                     <!-- TMPL_UNLESS name="hide_marc" --><b><!-- TMPL_VAR NAME="marc_subfield" --></b><!-- /TMPL_UNLESS -->
221                     <span title="<!-- TMPL_VAR name="long_desc" -->"><!-- TMPL_VAR NAME="short_desc" --></span></label>
222                     <!-- TMPL_VAR NAME="marc_value" -->
223                     <!-- TMPL_IF name="link" -->
224                         <a href="/cgi-bin/koha/catalogue/search.pl?op=do_search&amp;marclist=<!-- TMPL_VAR NAME="link" -->&amp;operator==&amp;type=intranet&amp;value=<!-- TMPL_VAR NAME="marc_value" ESCAPE="URL" -->">
225                             <img border="0" src="<!-- TMPL_VAR NAME="interface" -->/<!-- TMPL_VAR NAME="theme" -->/images/filefind.png" height="15" title="Search on <!-- TMPL_VAR name="marc_value" -->" alt="Search on <!-- TMPL_VAR name="marc_value" -->" />
226                         </a>
227                     <!-- /TMPL_IF -->
228                     <!-- TMPL_IF NAME="authority" -->
229                         <a href="/cgi-bin/koha/authorities/detail.pl?authid=<!-- TMPL_VAR name="authority" -->" class="button">Auth</a>
230                     <!-- /TMPL_IF -->
231                 </p>
232             <!-- /TMPL_LOOP -->
233             </div>
234             </div>
235         <!-- /TMPL_LOOP -->
236     </div>
237     
238     <div id="4XX" class="content_hidden">
239         <!-- TMPL_LOOP NAME="4XX" -->
240                 <!-- TMPL_IF name="tag" -->
241                     <div class="tag">
242                     <div class="tag_title">
243                         <!-- TMPL_VAR NAME="tag" -->
244                     </div>
245                 <!-- TMPL_ELSE -->
246                     <div class="tag">
247                 <!-- /TMPL_IF -->
248             <!-- TMPL_LOOP NAME="subfield" -->
249                 <p>
250                     <label class="labelsubfield">&nbsp;
251                     <!-- TMPL_UNLESS name="hide_marc" --><b><!-- TMPL_VAR NAME="marc_subfield" --></b><!-- /TMPL_UNLESS -->
252                     <span title="<!-- TMPL_VAR name="long_desc" -->"><!-- TMPL_VAR NAME="short_desc" --></span></label>
253                     <!-- TMPL_VAR NAME="marc_value" -->
254                     <!-- TMPL_IF name="link" -->
255                         <a href="/cgi-bin/koha/catalogue/search.pl?op=do_search&amp;marclist=<!-- TMPL_VAR NAME="link" -->&amp;operator==&amp;type=intranet&amp;value=<!-- TMPL_VAR NAME="marc_value" ESCAPE="URL" -->">
256                             <img border="0" src="<!-- TMPL_VAR NAME="interface" -->/<!-- TMPL_VAR NAME="theme" -->/images/filefind.png" height="15" title="Search on <!-- TMPL_VAR name="marc_value" -->"> alt="Search on <!-- TMPL_VAR name="marc_value" -->" />
257                         </a>
258                     <!-- /TMPL_IF -->
259                     <!-- TMPL_IF NAME="authority" -->
260                         <a href="/cgi-bin/koha/authorities/detail.pl?authid=<!-- TMPL_VAR name="authority" -->" class="button">Auth</a>
261                     <!-- /TMPL_IF -->
262                 </p>
263             <!-- /TMPL_LOOP -->
264             </div>
265             </div>
266         <!-- /TMPL_LOOP -->
267     </div>
268     
269     <div  id="5XX" class="content_hidden">
270         <!-- TMPL_LOOP NAME="5XX" -->
271                 <!-- TMPL_IF name="tag" -->
272                     <div class="tag">
273                     <div class="tag_title">
274                         <!-- TMPL_VAR NAME="tag" -->
275                     </div>
276                 <!-- TMPL_ELSE -->
277                     <div class="tag">
278                 <!-- /TMPL_IF -->
279             <!-- TMPL_LOOP NAME="subfield" -->
280                 <p>
281                     <label class="labelsubfield">&nbsp;
282                     <!-- TMPL_UNLESS name="hide_marc" --><b><!-- TMPL_VAR NAME="marc_subfield" --></b><!-- /TMPL_UNLESS -->
283                     <span title="<!-- TMPL_VAR name="long_desc" -->"><!-- TMPL_VAR NAME="short_desc" --></span></label>
284                     <!-- TMPL_VAR NAME="marc_value" -->
285                     <!-- TMPL_IF name="link" -->
286                         <a href="/cgi-bin/koha/catalogue/search.pl?op=do_search&amp;marclist=<!-- TMPL_VAR NAME="link" -->&amp;operator==&amp;type=intranet&amp;value=<!-- TMPL_VAR NAME="marc_value" ESCAPE="URL" -->">
287                             <img border="0" src="<!-- TMPL_VAR NAME="interface" -->/<!-- TMPL_VAR NAME="theme" -->/images/filefind.png" height="15" title="Search on <!-- TMPL_VAR name="marc_value" -->" alt="Search on <!-- TMPL_VAR name="marc_value" -->" />
288                         </a>
289                     <!-- /TMPL_IF -->
290                     <!-- TMPL_IF NAME="authority" -->
291                         <a href="/cgi-bin/koha/authorities/detail.pl?authid=<!-- TMPL_VAR name="authority" -->" class="button">Auth</a>
292                     <!-- /TMPL_IF -->
293                 </p>
294             <!-- /TMPL_LOOP -->
295             </div>
296             </div>
297         <!-- /TMPL_LOOP -->
298     </div>
299     
300     <div id="6XX" class="content_hidden">
301         <!-- TMPL_LOOP NAME="6XX" -->
302                 <!-- TMPL_IF name="tag" -->
303                     <div class="tag">
304                     <div class="tag_title">
305                         <!-- TMPL_VAR NAME="tag" -->
306                     </div>
307                 <!-- TMPL_ELSE -->
308                     <div class="tag">
309                 <!-- /TMPL_IF -->
310             <!-- TMPL_LOOP NAME="subfield" -->
311                 <p>
312                     <label class="labelsubfield">&nbsp;
313                     <!-- TMPL_UNLESS name="hide_marc" --><b><!-- TMPL_VAR NAME="marc_subfield" --></b><!-- /TMPL_UNLESS -->
314                     <span title="<!-- TMPL_VAR name="long_desc" -->"><!-- TMPL_VAR NAME="short_desc" --></span></label>
315                     <!-- TMPL_VAR NAME="marc_value" -->
316                     <!-- TMPL_IF name="link" -->
317                         <a href="/cgi-bin/koha/catalogue/search.pl?op=do_search&amp;marclist=<!-- TMPL_VAR NAME="link" -->&amp;operator==&amp;type=intranet&amp;value=<!-- TMPL_VAR NAME="marc_value" ESCAPE="URL" -->">
318                             <img border="0" src="<!-- TMPL_VAR NAME="interface" -->/<!-- TMPL_VAR NAME="theme" -->/images/filefind.png" height="15" title="Search on <!-- TMPL_VAR name="marc_value" -->" alt="Search on <!-- TMPL_VAR name="marc_value" -->" />
319                         </a>
320                     <!-- /TMPL_IF -->
321                     <!-- TMPL_IF NAME="authority" -->
322                         <a href="/cgi-bin/koha/authorities/detail.pl?authid=<!-- TMPL_VAR name="authority" -->" class="button">Auth</a>
323                     <!-- /TMPL_IF -->
324                 </p>
325             <!-- /TMPL_LOOP -->
326             </div>
327             </div>
328         <!-- /TMPL_LOOP -->
329     </div>
330     
331     <div  id="7XX" class="content_hidden">
332         <!-- TMPL_LOOP NAME="7XX" -->
333                 <!-- TMPL_IF name="tag" -->
334                     <div class="tag">
335                     <div class="tag_title">
336                         <!-- TMPL_VAR NAME="tag" -->
337                     </div>
338                 <!-- TMPL_ELSE -->
339                     <div class="tag">
340                 <!-- /TMPL_IF -->
341             <!-- TMPL_LOOP NAME="subfield" -->
342                 <p>
343                     <label class="labelsubfield">&nbsp;
344                     <!-- TMPL_UNLESS name="hide_marc" --><b><!-- TMPL_VAR NAME="marc_subfield" --></b><!-- /TMPL_UNLESS -->
345                     <span title="<!-- TMPL_VAR name="long_desc" -->"><!-- TMPL_VAR NAME="short_desc" --></span></label>
346                     <!-- TMPL_VAR NAME="marc_value" -->
347                     <!-- TMPL_IF name="link" -->
348                         <a href="/cgi-bin/koha/catalogue/search.pl?op=do_search&amp;marclist=<!-- TMPL_VAR NAME="link" -->&amp;operator==&amp;type=intranet&amp;value=<!-- TMPL_VAR NAME="marc_value" ESCAPE="URL" -->">
349                             <img border="0" src="<!-- TMPL_VAR NAME="interface" -->/<!-- TMPL_VAR NAME="theme" -->/images/filefind.png" height="15" title="Search on <!-- TMPL_VAR name="marc_value" -->" alt="Search on <!-- TMPL_VAR name="marc_value" -->" />
350                         </a>
351                     <!-- /TMPL_IF -->
352                     <!-- TMPL_IF NAME="authority" -->
353                         <a href="/cgi-bin/koha/authorities/detail.pl?authid=<!-- TMPL_VAR name="authority" -->" class="button">Auth</a>
354                     <!-- /TMPL_IF -->
355                 </p>
356             <!-- /TMPL_LOOP -->
357             </div>
358             </div>
359         <!-- /TMPL_LOOP -->
360     </div>
361     
362     <div id="8XX" class="content_hidden">
363         <!-- TMPL_LOOP NAME="8XX" -->
364                 <!-- TMPL_IF name="tag" -->
365                     <div class="tag">
366                     <div class="tag_title">
367                         <!-- TMPL_VAR NAME="tag" -->
368                     </div>
369                 <!-- TMPL_ELSE -->
370                     <div class="tag">
371                 <!-- /TMPL_IF -->
372             <!-- TMPL_LOOP NAME="subfield" -->
373                 <p>
374                     <label class="labelsubfield">&nbsp;
375                     <!-- TMPL_UNLESS name="hide_marc" --><b><!-- TMPL_VAR NAME="marc_subfield" --></b><!-- /TMPL_UNLESS -->
376                     <span title="<!-- TMPL_VAR name="long_desc" -->"><!-- TMPL_VAR NAME="short_desc" --></span></label>
377                     <!-- TMPL_VAR NAME="marc_value" -->
378                     <!-- TMPL_IF name="link" -->
379                         <a href="/cgi-bin/koha/catalogue/search.pl?op=do_search&amp;marclist=<!-- TMPL_VAR NAME="link" -->&amp;operator==&amp;type=intranet&amp;value=<!-- TMPL_VAR NAME="marc_value" ESCAPE="URL" -->">
380                             <img border="0" src="<!-- TMPL_VAR NAME="interface" -->/<!-- TMPL_VAR NAME="theme" -->/images/filefind.png" height="15" title="Search on <!-- TMPL_VAR name="marc_value" -->" alt="Search on <!-- TMPL_VAR name="marc_value" -->" />
381                         </a>
382                     <!-- /TMPL_IF -->
383                     <!-- TMPL_IF NAME="authority" -->
384                         <a href="/cgi-bin/koha/authorities/detail.pl?authid=<!-- TMPL_VAR name="authority" -->" class="button">Auth</a>
385                     <!-- /TMPL_IF -->
386                 </p>
387             <!-- /TMPL_LOOP -->
388             </div>
389             </div>
390         <!-- /TMPL_LOOP -->
391     </div>
392     
393     <div id="9XX" class="content_hidden">
394         <!-- TMPL_LOOP NAME="9XX" -->
395                 <!-- TMPL_IF name="tag" -->
396                     <div class="tag">
397                     <div class="tag_title">
398                         <!-- TMPL_VAR NAME="tag" -->
399                     </div>
400                 <!-- TMPL_ELSE -->
401                     <div class="tag">
402                 <!-- /TMPL_IF -->
403             <!-- TMPL_LOOP NAME="subfield" -->
404                 <p>
405                     <label class="labelsubfield">&nbsp;
406                     <!-- TMPL_UNLESS name="hide_marc" --><b><!-- TMPL_VAR NAME="marc_subfield" --></b><!-- /TMPL_UNLESS -->
407                     <span title="<!-- TMPL_VAR name="long_desc" -->"><!-- TMPL_VAR NAME="short_desc" --></span></label>
408                     <!-- TMPL_VAR NAME="marc_value" -->
409                     <!-- TMPL_IF name="link" -->
410                         <a href="/cgi-bin/koha/catalogue/search.pl?op=do_search&amp;marclist=<!-- TMPL_VAR NAME="link" -->&amp;operator==&amp;type=intranet&amp;value=<!-- TMPL_VAR NAME="marc_value" ESCAPE="URL" -->">
411                             <img border="0" src="<!-- TMPL_VAR NAME="interface" -->/<!-- TMPL_VAR NAME="theme" -->/images/filefind.png" height="15" title="Search on <!-- TMPL_VAR name="marc_value" -->" alt="Search on <!-- TMPL_VAR name="marc_value" -->" />
412                         </a>
413                     <!-- /TMPL_IF -->
414                     <!-- TMPL_IF NAME="authority" -->
415                         <a href="/cgi-bin/koha/authorities/detail.pl?authid=<!-- TMPL_VAR name="authority" -->" class="button">Auth</a>
416                     <!-- /TMPL_IF -->
417                 </p>
418             <!-- /TMPL_LOOP -->
419             </div>
420             </div>
421         <!-- /TMPL_LOOP -->
422     </div>
423     
424     <div id="10XX" class="content_hidden">
425         <table>
426                 <tr>
427                     <!-- TMPL_LOOP NAME="item_header_loop" -->
428                         <th>
429                             <!-- TMPL_VAR NAME="header_value" -->
430                         </th>
431                     <!-- /TMPL_LOOP -->
432                 </tr>
433                 <!-- TMPL_LOOP NAME="item_loop" -->
434                     <tr>
435                         <!-- TMPL_VAR NAME="item_value" -->
436                     </tr>
437                 <!-- /TMPL_LOOP -->
438         </table>
439     </div>
440
441 </div>
442 </div>
443 <div class="yui-b">
444 <!-- TMPL_INCLUDE NAME="biblio-view-menu.inc" -->
445 <!-- TMPL_INCLUDE NAME="cat-menu.inc" -->
446 </div>
447 </div>
448 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->