]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/server/index.xhtml
5a2aba64ddf6ac5a923db0430e8dc63237a0dbd2
[working/Evergreen.git] / Open-ILS / xul / staff_client / server / index.xhtml
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <!DOCTYPE html PUBLIC
4         "-//W3C//DTD XHTML 1.0 Transitional//EN" 
5         "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" [
6         <!--#include virtual="/opac/locale/${locale}/lang.dtd"-->
7 ]>
8
9 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
10 <head>
11   <meta name="generator" content=
12   "HTML Tidy for Linux/x86 (vers 11 February 2007), see www.w3.org" />
13
14   <title>&staff.client.portal.title;</title>
15   <script type="text/javascript">
16 // <![CDATA[
17
18   function get_i18n_str(id) {
19      var e = document.getElementById(id);
20      if (e) return e.textContent;
21      return "Error: i18n string not present: " + id;
22   }
23
24   function SearchOnBlur() {
25         var textbox = document.getElementById("quicksearch");
26
27         if(textbox && textbox.value == "")
28                 textbox.style.background = "#FFFFFF url(\"skin/media/images/portal/eg_tiny_logo.jpg\") center no-repeat";
29   }
30
31   function SearchOnFocus() {
32         var textbox = document.getElementById("quicksearch");
33         
34         if(textbox)
35                 textbox.style.background = "#FFFFFF";
36   }
37
38   var home_ou_id = 1;
39
40   function SearchOnSubmit() {
41         var textbox = document.getElementById("quicksearch");
42         
43         //var home_ou_id = 1; // 1 = all org units. Should come from staff client scripts
44         // a quicksearch should probably just default to the whole system. Staff can narrow it down later if they want.
45         var search_depth = 0; // 0 = consortium, 1 = system, 2 = library, 3 = sub-library, etc.
46         
47         if(textbox && textbox.value != "") {
48                 var opac_url =  xulG.url_prefix('opac_rresult') + "?rt=keyword&tp=keyword&l=" + home_ou_id + "&d=" + search_depth +"&f=&t=" + encodeURIComponent(textbox.value);
49                 if (urls.opac_rresult.match(/\/eg\/opac\/results/)) {
50                     opac_url =  xulG.url_prefix('opac_rresult') + "?query=" + encodeURIComponent(textbox.value);
51                 }
52                 var params = {'tab_name': get_i18n_str('staff.client.portal.catalog.tab_name') };
53                 var content_params = { 'session' : ses(), 'authtime' : ses('authtime'), 'opac_url' : opac_url };
54                 xulG.set_tab(urls.XUL_OPAC_WRAPPER, params, content_params);
55         }
56         
57         return false;
58   }
59   // ]]> 
60   </script>
61   <script type="text/javascript" src="main/constants.js">
62 </script>
63   <script type="text/javascript" src="/opac/common/js/utils.js">
64 </script>
65   <script type="text/javascript" src="/opac/common/js/CGI.js">
66 </script>
67   <script type="text/javascript" src="/opac/common/js/md5.js">
68 </script>
69   <script type="text/javascript" src="/opac/common/js/fmall.js">
70 </script>
71   <script type="text/javascript" src="/opac/common/js/fmgen.js">
72 </script>
73   <script type="text/javascript" src="/opac/common/js/RemoteRequest.js">
74 </script>
75   <script type="text/javascript" src="/opac/common/js/<!--#echo var='locale'-->/OrgTree.js">
76 </script>
77   <script type="text/javascript" src="/opac/common/js/org_utils.js">
78 </script>
79   <script type="text/javascript" src="OpenILS/global_util.js">
80 </script>
81   <script type="text/javascript" src="OpenILS/event_util.js">
82 </script>
83   <script type="text/javascript" src="main/JSAN.js">
84 </script>
85   <script type="text/javascript">
86       // <![CDATA[
87         
88                 //this function will allow for the "Hello, Staff Member" messages
89                 function init() { 
90                         document.getElementById('quicksearch').focus();
91                         SearchOnBlur();
92                         JSAN.use('OpenILS.data'); 
93                         var data = new OpenILS.data(); 
94                         data.stash_retrieve(); 
95                         document.getElementById('staffname').innerHTML = ", " + data.list.au[0].first_given_name(); 
96                         home_ou_id = data.list.au[0].ws_ou();
97                         xulG.set_tab_name(get_i18n_str('staff.client.portal.tab_name'));
98                 }
99                 function jb_open_eg_web_page(path, label) {
100                         var loc = urls.XUL_BROWSER + '?url=' + window.escape(xulG.url_prefix('EG_WEB_BASE') + '/' + path);
101
102                         xulG.set_tab( 
103                                 loc, 
104                                 {tab_name : label, browser : false }, 
105                                 {no_xulG : false, show_print_button : false, show_nav_buttons : true }
106                         );
107                 }
108                 function jb_open_eg_web_page_newtab(path, label) {
109                         var loc = urls.XUL_BROWSER + '?url=' + window.escape(xulG.url_prefix('EG_WEB_BASE') + '/' + path);
110
111                         xulG.new_tab( 
112                                 loc, 
113                                 {tab_name : label, browser : false }, 
114                                 {no_xulG : false, show_print_button : false, show_nav_buttons : true }
115                         );
116                 }
117                 
118                 //Place your helpdesk link here
119                 function helpdesk(newtab) {
120                         xulG.open_external("http://evergreen-ils.org/communicate/");
121                 }
122                 
123                 //A good place for a Google map.  Evergreen Indiana uses GIS data to create a Google map to verify if a library is within district boundaries
124                 //http://208.119.72.68/evergreen/evergreenmap.html
125                 function address_map(newtab) {
126                         loc = "http://maps.google.com";
127                         var params = {'tab_name':get_i18n_str('staff.client.portal.address_map.tab_name')};
128                         
129                         if(newtab)
130                                 xulG.new_tab(loc, params, {}); 
131                         else
132                                 xulG.set_tab(loc, params, {}); 
133                 }
134                 function local_admin(newtab) {
135                         var loc = urls.XUL_REMOTE_BROWSER + '?url=' + window.escape(urls.XUL_LOCAL_ADMIN + '?ses=' + window.escape(ses()) + '&session=' + window.escape(ses())); 
136                         var params = {'tab_name': get_i18n_str('staff.client.portal.local_admin.tab_name') , 'browser' : true };
137                         var content_params = { 'no_xulG' : false, 'show_nav_buttons' : true, 'show_print_button' : true };
138                         
139                         if(newtab)
140                                 xulG.new_tab(loc, params, content_params);
141                         else
142                                 xulG.set_tab(loc, params, content_params);
143                 }
144                 function copy_status(newtab) {
145                         if(newtab)
146                                 xulG.new_tab(urls.XUL_COPY_STATUS,{},{});
147                         else
148                                 xulG.set_tab(urls.XUL_COPY_STATUS,{},{});
149                 }
150                 function hold_pull_list(newtab) {
151                         var loc = urls.XUL_REMOTE_BROWSER + '?url=' + window.escape(urls.XUL_HOLD_PULL_LIST + '?ses=' + window.escape(ses()));
152                         var params = {'tab_name': get_i18n_str('staff.client.portal.on_shelf_pull_list.tab_name') };
153                         
154                         if(newtab)
155                                 xulG.new_tab(loc, params);
156                         else
157                                 xulG.set_tab(loc, params);
158                 }
159                 function checkout(newtab) {
160                         if(newtab)
161                                 xulG.new_tab(urls.XUL_PATRON_BARCODE_ENTRY,{},{});
162                         else
163                                 xulG.set_tab(urls.XUL_PATRON_BARCODE_ENTRY,{},{});
164                 }
165                 function catalog(newtab) {
166                         var params = {'tab_name': get_i18n_str('staff.client.portal.catalog.tab_name') };
167                         var content_params = { 'session' : ses(), 'authtime' : ses('authtime') };
168                         
169                         if(newtab)
170                                 xulG.new_tab(urls.XUL_OPAC_WRAPPER, params, content_params);
171                         else
172                                 xulG.set_tab(urls.XUL_OPAC_WRAPPER, params, content_params);
173                 }
174                 function z39_50(newtab) {
175                         if(newtab)
176                                 xulG.new_tab(urls.XUL_Z3950_IMPORT,{},{});
177                         else
178                                 xulG.set_tab(urls.XUL_Z3950_IMPORT,{},{});
179                 }
180                 function copy_buckets(newtab) {
181                         params = {'tab_name': get_i18n_str('staff.client.portal.copybuckets.tab_name') };
182                         if(newtab)
183                                 xulG.new_tab(urls.XUL_COPY_BUCKETS, params, {});
184                         else
185                                 xulG.set_tab(urls.XUL_COPY_BUCKETS, params, {});
186                 }
187                 function record_buckets(newtab) {
188                         params = {'tab_name': get_i18n_str('staff.client.portal.recordbuckets.tab_name') };
189                         if(newtab)
190                                 xulG.new_tab(urls.XUL_RECORD_BUCKETS, params, {});
191                         else
192                                 xulG.set_tab(urls.XUL_RECORD_BUCKETS, params, {});
193                 }
194                 function receipt_editor(newtab) {
195                         if(newtab)
196                                 xulG.new_tab(urls.XUL_PRINT_LIST_TEMPLATE_EDITOR, {}, {});
197                         else
198                                 xulG.set_tab(urls.XUL_PRINT_LIST_TEMPLATE_EDITOR, {}, {});
199                 }
200                 function checkin(newtab) {
201                         if(newtab)
202                                 xulG.new_tab(urls.XUL_CHECKIN,{},{});
203                         else
204                                 xulG.set_tab(urls.XUL_CHECKIN,{},{});
205                 }
206                 function MARC_batch_import(newtab) {
207                         var tabstr = get_i18n_str('staff.client.portal.marcutil.tab_name');
208                         if(newtab)
209                                 jb_open_eg_web_page_newtab('vandelay/vandelay', tabstr );
210                         else
211                                 jb_open_eg_web_page('vandelay/vandelay', tabstr );
212                 }
213                 function local_admin_reports(newtab) {
214                         var loc = urls.XUL_BROWSER + '?url=' + window.escape( xulG.url_prefix('XUL_REPORTS') + '?ses=' + ses());
215                         params = {'tab_name' : get_i18n_str('staff.client.portal.reports.tab_name') , 'browser' : false }
216                         content_params = {'no_xulG' : false, 'show_print_button' : false, show_nav_buttons : true }
217                         if(newtab)
218                                 xulG.new_tab(loc, params, content_params);
219                         else
220                                 xulG.set_tab(loc, params, content_params);
221                 }
222                 function find_patron(newtab) {
223                         if(newtab)
224                                 xulG.new_patron_tab({},{});
225                         else
226                                 xulG.set_patron_tab({},{});
227                 }
228                 
229                 function spawn_search(s) {
230                         xulG.new_patron_tab( {}, { 'doit' : 1, 'query' : js2JSON(s) } );
231                 }
232                 function register_patron(newtab) {
233                         function spawn_editor(p) {
234                                 var url = urls.XUL_PATRON_EDIT;
235                                 var param_count = 0;
236                                 for (var i in p) {
237                                         if (param_count++ == 0) url += '?'; else url += '&amp;';
238                                         url += i + '=' + window.escape(p[i]);
239                                 }
240                                 var loc = urls.XUL_REMOTE_BROWSER + '?url=' + window.escape( url );
241                                 xulG.new_tab(loc, {}, { 'show_print_button' : true , 'tab_name' : get_i18n_str('staff.client.portal.patronreg_edit.tab_name') , 'passthru_content_params' : {'spawn_search' : function(s) { spawn_search(s); }, 'spawn_editor' : spawn_editor }});
242                         }
243                         
244                         var loc = urls.XUL_REMOTE_BROWSER  + '?url=' + window.escape( urls.XUL_PATRON_EDIT + '?ses=' + window.escape( ses() ) );
245                         var content_params = { 
246                                                      'show_print_button' : true , 
247                                                      'tab_name' : get_i18n_str('staff.client.portal.patronreg.tab_name') ,
248                                                      'passthru_content_params' : { 'spawn_search' : function(s) { spawn_search(s); },
249                                                                                     'spawn_editor' : spawn_editor }
250                                                  }
251                         if(newtab)
252                                 xulG.new_tab(loc, {}, content_params);
253                         else
254                                 xulG.set_tab(loc, {}, content_params);
255                 }
256                 // ]]>
257   </script>
258   <style type="text/css">
259 /*<![CDATA[*/
260   body {
261   font-family: "Trebuchet MS", Helvetica, Verdana, Arial, sans-serif;
262   }
263
264   hr {
265   border-style: solid;
266   border-color: black;
267   width: 180px;
268   }
269
270   #alignment {
271         border-collapse: collapse;
272         border-style: none;
273         width: 100%;
274   }
275
276   #alignment td {
277         vertical-align: top;
278         font-size: 85%;
279         font-weight: bold;
280         color: black;
281         text-decoration: none;
282   }
283
284   .functionlist {
285         border-style: none;
286         margin-left: auto;
287         margin-right: auto;
288         border-collapse:collapse;
289   }
290
291   .functionlist tr.clickable {
292         cursor:pointer;
293   }
294
295   .functionlist tr.clickable:hover {
296         background-color:#e0e0e0;
297   }
298
299   .functionlist td {
300   text-align: left;
301         margin: 2px;
302         padding: 3px;
303   }
304
305   .functionalgroup {
306         text-align: center;
307   }
308
309   a img {
310         border-style: none;
311   }
312
313   .attribution {
314         font-size: 75%;
315   }
316
317   form {
318         margin: 0px;
319         padding: 0px;
320   }
321
322   .newtabimg {
323         float: right;
324         padding-left:4px;
325   }
326
327   .newtabimg:hover {
328         background-color: lightgreen;
329   }
330
331   .funcimg {
332         width: 48px;
333         height: 48px;
334   }
335
336   /*]]>*/
337   </style>
338   <style type="text/css">
339 /*<![CDATA[*/
340   body.c4 {margin-top: 0px; padding-top: 0px; background-image: url(skin/media/images/portal/background.png);}
341   td.c3 {border: 1px solid black; border-top: 0px; border-bottom: 0px;}
342   span.c2 {font-size:75%;}
343   div.c1 {text-align: center}
344   /*]]>*/
345   </style>
346 </head>
347
348 <body class="c4" onload="init();">
349   <div class="c1">
350     <img src="skin/media/images/portal/logo.png" height="121" width="396" alt="Evergreen logo" /><br />
351     &staff.client.portal.welcome;<span id="staffname"></span><br />
352     <br />
353   </div>
354
355   <table id="alignment">
356     <tr>
357       <td>
358         <div class="functionalgroup">
359           &staff.client.portal.circpatron;
360           <hr />
361
362           <table class="functionlist">
363             <tr class="clickable" onclick="try { checkout(false); } catch(E) { alert(E); }">
364               <td height="50"><img src="skin/media/images/portal/forward.png" height="48" width="48"
365               alt="&staff.client.portal.checkout.description;" /></td>
366
367               <td><img class="newtabimg" src="skin/media/images/portal/newtab2.PNG" alt="&staff.client.portal.open_new_tab.description;"
368               title="&staff.client.portal.open_new_tab.description;"
369               onclick="try { checkout(true); } catch(E) { alert(E); }" /> &staff.client.portal.checkout;<br />
370               <span class="c2">&staff.client.portal.retrievebc;</span></td>
371             </tr>
372
373             <tr class="clickable" onclick="try { checkin(false); } catch(E) { alert(E); }">
374               <td height="50"><img src="skin/media/images/portal/back.png" height="48" width="48"
375               alt="&staff.client.portal.checkin.description;" /></td>
376
377               <td><img class="newtabimg" src="skin/media/images/portal/newtab2.PNG" alt="&staff.client.portal.open_new_tab.description;"
378               title="&staff.client.portal.open_new_tab.description;"
379               onclick="try { checkin(true); } catch(E) { alert(E); }" />&staff.client.portal.checkin;<br /></td>
380             </tr>
381
382             <tr class="clickable" onclick="try { register_patron(false); } catch(E) { alert(E); }">
383               <td height="50"><img src="skin/media/images/portal/registerpatron.png" height="48" width="48"
384               alt="&staff.client.portal.patronreg.description;" /></td>
385
386               <td><img class="newtabimg" src="skin/media/images/portal/newtab2.PNG" alt="&staff.client.portal.open_new_tab.description;"
387               title="&staff.client.portal.open_new_tab.description;"
388               onclick="try { register_patron(true); } catch(E) { alert(E); }" /> &staff.client.portal.patronreg;</td>
389             </tr>
390
391             <tr class="clickable" onclick="try { find_patron(false); } catch(E) { alert(E); }">
392               <td height="50"><img src="skin/media/images/portal/retreivepatron.png" height="48" width="48"
393               alt="&staff.client.portal.patronsearch.description;" /></td>
394
395               <td><img class="newtabimg" src="skin/media/images/portal/newtab2.PNG" alt="&staff.client.portal.open_new_tab.description;"
396               title="&staff.client.portal.open_new_tab.description;"
397               onclick="try { find_patron(true); } catch(E) { alert(E); }" /> &staff.client.portal.patronsearch;</td>
398             </tr>
399
400             <tr class="clickable" onclick="try { hold_pull_list(false); } catch(E) { alert(E); }">
401               <td height="50"><img class="funcimg" src="skin/media/images/portal/holds.png" height="48" width="48"
402               alt="&staff.client.portal.holdlist.description;" /></td>
403
404               <td><img class="newtabimg" src="skin/media/images/portal/newtab2.PNG" alt="&staff.client.portal.open_new_tab.description;"
405               title="&staff.client.portal.open_new_tab.description;"
406               onclick="try { hold_pull_list(true); } catch(E) { alert(E); }" /> &staff.client.portal.holdlist;</td>
407             </tr>
408 <!--
409             <tr class="clickable" onclick="try { address_map(false); } catch(E) { alert(E); }">
410               <td height="50"><img src="skin/media/images/portal/map.PNG" alt="Locate Address In Map"
411               onclick="try { address_map(false); } catch(E) { alert(E); }" /></td>
412
413               <td><img class="newtabimg" src="skin/media/images/portal/newtab2.PNG" alt="&staff.client.portal.open_new_tab.description;"
414               title="&staff.client.portal.open_new_tab.description;"
415               onclick="try { address_map(true); } catch(E) { alert(E); }" /> <a href="#"
416               onclick=
417               "try { address_map(false); } catch(E) { alert(E); }; return false;">&staff.client.portal.addrmap;</a></td>
418             </tr>
419 -->
420           </table>
421         </div>
422       </td>
423
424       <td class="c3">
425         <div class="functionalgroup">
426           &staff.client.portal.itemcataloging;
427           <hr />
428
429           <table class="functionlist">
430             <tr>
431               <td colspan="2" rowspan="1">
432                 <form action="#" onsubmit="return SearchOnSubmit();">
433                   <input id="quicksearch" onfocus="SearchOnFocus();" onblur=
434                   "SearchOnBlur();" onkeydown="SearchOnFocus();" /> <input value="&staff.client.portal.search.button;" type="submit" />
435                 </form>
436               </td>
437             </tr>
438
439             <tr class="clickable" onclick="try { catalog(false); } catch(E) { alert(E); }">
440               <td height="50"><img src="skin/media/images/portal/book.png" height="48" width="48"
441               alt="&staff.client.portal.advsearch.description;" /></td>
442
443               <td><img class="newtabimg" src="skin/media/images/portal/newtab2.PNG" alt="&staff.client.portal.open_new_tab.description;"
444               title="&staff.client.portal.open_new_tab.description;"
445               onclick="try { catalog(true); } catch(E) { alert(E); }" /> &staff.client.portal.advsearch;</td>
446             </tr>
447
448             <tr class="clickable" onclick="try { copy_status(false); } catch(E) { alert(E); }">
449               <td height="50"><img src="skin/media/images/portal/book.png" height="48" width="48" 
450               alt="&staff.client.portal.itemstatus.description;" /></td>
451
452               <td><img class="newtabimg" src="skin/media/images/portal/newtab2.PNG" alt="&staff.client.portal.open_new_tab.description;"
453               title="&staff.client.portal.open_new_tab.description;"
454               onclick="try { copy_status(true); } catch(E) { alert(E); }" /> &staff.client.portal.itemstatus;</td>
455             </tr>
456
457             <tr class="clickable" onclick="try { MARC_batch_import(false); } catch(E) { alert(E); }">
458               <td height="50"><img src="skin/media/images/portal/batchimport.png" height="48" width="48"
459               alt="&staff.client.portal.marcutil.description;" /></td>
460
461               <td><img class="newtabimg" src="skin/media/images/portal/newtab2.PNG" alt="&staff.client.portal.open_new_tab.description;"
462               title="&staff.client.portal.open_new_tab.description;"
463               onclick="try { MARC_batch_import(true); } catch(E) { alert(E); }" /> &staff.client.portal.marcutil;</td>
464             </tr>
465
466             <tr class="clickable" onclick="try { z39_50(false); } catch(E) { alert(E); }">
467               <td height="50"><img src="skin/media/images/portal/z3950.png" height="48" width="48"
468               alt="&staff.client.portal.z3950.description;" /></td>
469
470               <td><img class="newtabimg" src="skin/media/images/portal/newtab2.PNG" alt="&staff.client.portal.open_new_tab.description;"
471               title="&staff.client.portal.open_new_tab.description;"
472               onclick="try { z39_50(true); } catch(E) { alert(E); }" /> &staff.client.portal.z3950;</td>
473             </tr>
474
475             <tr class="clickable" onclick="try { copy_buckets(false); } catch(E) { alert(E); }">
476               <td height="50"><img src="skin/media/images/portal/bucket.png" height="48" width="48" 
477               alt="&staff.client.portal.copybuckets.description;" /></td>
478
479               <td><img class="newtabimg" src="skin/media/images/portal/newtab2.PNG" alt="&staff.client.portal.open_new_tab.description;"
480               title="&staff.client.portal.open_new_tab.description;"
481               onclick="try { copy_buckets(true); } catch(E) { alert(E); }" /> &staff.client.portal.copybuckets;</td>
482             </tr>
483
484             <tr class="clickable" onclick="try { record_buckets(false); } catch(E) { alert(E); }">
485               <td height="50"><img src="skin/media/images/portal/bucket.png" height="48" width="48"
486               alt="&staff.client.portal.recordbuckets.description;" /></td>
487
488               <td><img class="newtabimg" src="skin/media/images/portal/newtab2.PNG" alt="&staff.client.portal.open_new_tab.description;"
489               title="&staff.client.portal.open_new_tab.description;"
490               onclick="try { record_buckets(true); } catch(E) { alert(E); }" /> &staff.client.portal.recordbuckets;</td>
491             </tr>
492           </table><br />
493         </div>
494       </td>
495
496       <td>
497         <div class="functionalgroup">
498           &staff.client.portal.admin;
499           <hr />
500
501           <table class="functionlist">
502             <tr class="clickable" onclick="try { helpdesk(false); } catch(E) { alert(E); }">
503               <td height="50"><img src="skin/media/images/portal/helpdesk.png" height="48" width="48"
504               alt="&staff.client.portal.helpdesk.description;" /></td>
505
506               <td>&staff.client.portal.helpdesk;</td>
507             </tr>
508
509             <tr class="clickable" onclick="try { local_admin_reports(false); } catch(E) { alert(E); }">
510               <td height="50"><img src="skin/media/images/portal/reports.png" height="48" width="48"
511               alt="&staff.client.portal.reports.description;" /></td>
512
513               <td><img class="newtabimg" src="skin/media/images/portal/newtab2.PNG" alt="&staff.client.portal.open_new_tab.description;"
514               title="&staff.client.portal.open_new_tab.description;"
515               onclick="try { local_admin_reports(true); } catch(E) { alert(E); }" /> &staff.client.portal.reports;</td>
516             </tr>
517
518             <tr class="clickable" onclick="try { receipt_editor(false); } catch(E) { alert(E); }">
519               <td height="50"><img src="skin/media/images/portal/receipt_editor.png" height="48" width="48"
520               alt="&staff.client.portal.receipts.description;" /></td>
521
522               <td><img class="newtabimg" src="skin/media/images/portal/newtab2.PNG" alt="&staff.client.portal.open_new_tab.description;"
523               title="&staff.client.portal.open_new_tab.description;"
524               onclick="try { receipt_editor(true); } catch(E) { alert(E); }" /> &staff.client.portal.receipts;</td>
525             </tr>
526           </table>
527         </div>
528       </td>
529     </tr>
530   </table>
531
532   <div class="attribution c1">&staff.client.portal.copyright;<br />
533   &staff.client.portal.poweredby; <img src="skin/media/images/portal/eg_tiny_logo.jpg" alt="Evergreen logo" /></div>
534
535 <div style="display:none">
536   <span id="staff.client.portal.catalog.tab_name">&staff.client.portal.catalog.tab_name;</span>
537   <span id="staff.client.portal.tab_name">&staff.client.portal.tab_name;</span>
538   <span id="staff.client.portal.address_map.tab_name">&staff.client.portal.address_map.tab_name;</span>
539   <span id="staff.client.portal.local_admin.tab_name">&staff.client.portal.local_admin.tab_name;</span>
540   <span id="staff.client.portal.on_shelf_pull_list.tab_name">&staff.client.portal.on_shelf_pull_list.tab_name;</span>
541   <span id="staff.client.portal.catalog.tab_name">&staff.client.portal.catalog.tab_name;</span>
542   <span id="staff.client.portal.copybuckets.tab_name">&staff.client.portal.copybuckets.tab_name;</span>
543   <span id="staff.client.portal.recordbuckets.tab_name">&staff.client.portal.recordbuckets.tab_name;</span>
544   <span id="staff.client.portal.marcutil.tab_name">&staff.client.portal.marcutil.tab_name;</span>
545   <span id="staff.client.portal.reports.tab_name">&staff.client.portal.reports.tab_name;</span>
546   <span id="staff.client.portal.patronreg_edit.tab_name">&staff.client.portal.patronreg_edit.tab_name;</span>
547   <span id="staff.client.portal.patronreg.tab_name">&staff.client.portal.patronreg.tab_name;</span>
548 </div>
549 </body>
550 </html>
551
552