bug 2608: let offline circ processing work in background
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / virtualshelves / shelves.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; <!-- TMPL_IF NAME="viewshelf" -->Lists &rsaquo; Contents of <!-- TMPL_VAR NAME="shelfname" --><!-- TMPL_ELSE -->Lists<!-- /TMPL_IF --><!-- TMPL_IF NAME="shelves" --> &rsaquo; Create New List<!-- /TMPL_IF --><!-- TMPL_IF NAME="edit" --> &rsaquo; Edit List <!-- TMPL_VAR name="shelfname"--><!-- /TMPL_IF --></title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 <script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/jquery/plugins/jquery.checkboxes.pack.js"></script>
5 <script type="text/javascript">
6 //<![CDATA[ 
7
8 $(document).ready(function(){
9         $("#addbarcode").focus();
10         $("span.clearall").html("<a id=\"CheckNone\" href=\"/cgi-bin/koha/shelves.pl\">Clear All<\/a>");
11         $("span.checkall").html("<a id=\"CheckAll\" href=\"/cgi-bin/koha/shelves.pl\">Select All<\/a>");
12     $("#CheckAll").click(function(){
13         $(".checkboxed").checkCheckboxes();
14         return false;
15     });
16     $("#CheckNone").click(function(){
17         $(".checkboxed").unCheckCheckboxes();
18         return false;
19     });
20 });
21
22         function confirmDelete(message){
23                 if (window.confirm(message)) {
24                         location.href="/cgi-bin/koha/virtualshelves/shelves.pl?shelves=1&amp;DEL-<!-- TMPL_VAR NAME="shelfnumber" -->=1";
25                 } else { 
26                         return false;
27                 }
28         }
29     /**
30      * This function checks all checkboxes if all are empty,
31      * or unchecks all if any already checked.
32      */
33     function CheckAll(){
34         var checkboxes = document.getElementsByTagName('input');
35         var nbCheckbox = checkboxes.length;
36         var check = areAllChecked();
37         for(var i=0;i<nbCheckbox;i++){
38             if(checkboxes[i].getAttribute('type') == "checkbox" ){
39                 checkboxes[i].checked = (check) ? 0 : 1;
40             }
41         }
42     }
43     /**
44      * This function returns true if ALL checkboxes are checked
45      */
46     function areAllChecked(){
47         var checkboxes = document.getElementsByTagName('input');
48         var nbCheckbox = checkboxes.length;
49         for(var i=0;i<nbCheckbox;i++){
50             if(checkboxes[i].getAttribute('type') == "checkbox" ){
51                 if(checkboxes[i].checked == 0){
52                     return false;
53                 }
54             }
55         }
56         return true;
57     }
58     //]]>
59 </script>
60 <style type="text/css">
61         input.confirm {
62                 background:lightblue url(../../img/button-bg.gif) repeat-x scroll left top;
63                 border-width:2pt;
64         }
65 </style>
66 </head>
67 <body>
68 <!-- TMPL_INCLUDE NAME="header.inc" -->
69 <!-- TMPL_INCLUDE NAME="cat-search.inc" -->
70
71 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/virtualshelves/shelves.pl">Lists</a>
72 <!-- TMPL_IF NAME="viewshelf" -->&rsaquo; Contents of <i><!-- TMPL_VAR NAME="shelfname" --></i><!-- /TMPL_IF --><!-- TMPL_IF NAME="shelves" --> &rsaquo; Create New List<!-- /TMPL_IF --><!-- TMPL_IF NAME="edit" --> &rsaquo; Edit List <i><!-- TMPL_VAR name="shelfname"--></i><!-- /TMPL_IF --></div>
73
74 <div id="doc" class="yui-t7">
75  <div id="bd">
76   <div id="yui-main">
77    <div class="yui-g"><!-- TMPL_INCLUDE NAME="virtualshelves-toolbar.inc" -->
78    </div>
79 <!-- TMPL_IF NAME="paramsloop" -->
80 <!-- TMPL_LOOP NAME="paramsloop" -->
81 <div class="yui-ge">
82     <div class="yui-u first">
83         <!-- TMPL_IF NAME="already" --><div class="dialog alert">A List named <!-- TMPL_VAR NAME="already" --> already exists!</div><!-- /TMPL_IF -->
84                 <!-- TMPL_IF NAME="status" --><div class="dialog alert"><!-- TMPL_VAR NAME="string" --></div><!-- /TMPL_IF -->
85                 <!-- TMPL_IF NAME="nobarcode" --><div class="dialog alert">ERROR: No barcode given.</div><!-- /TMPL_IF --> 
86                 <!-- TMPL_IF NAME="noshelfnumber" --><div class="dialog alert">ERROR: No shelfnumber given.</div><!-- /TMPL_IF --> 
87                 <!-- TMPL_IF NAME="need_confirm" -->
88                 <div class="dialog alert">The list <i><!-- TMPL_VAR NAME="need_confirm" --></i> is not empty.
89                         <br />It has <b><!-- TMPL_VAR NAME="count" --></b> entries.
90                         <br />Use the "Confirm" button below to confirm deletion.
91                 </div>
92                 <!-- /TMPL_IF -->
93                 <!-- TMPL_IF NAME="nopermission" -->
94                 <div class="dialog alert">ERROR: You do not have adequate permission for that action on list <!-- TMPL_VAR NAME="nopermission" -->.</div>
95                 <!-- /TMPL_IF -->
96                 <!-- TMPL_IF NAME="failgetitem" -->
97                 <div class="dialog alert">ERROR: No item found with barcode <!-- TMPL_VAR NAME="failgetitem" -->.</div>
98                 <!-- /TMPL_IF --> 
99                 <!-- TMPL_IF NAME="duplicatebiblio" -->
100                 <div class="dialog alert">A record matching barcode <b><!-- TMPL_VAR NAME="duplicatebiblio" --></b> has already been added.</div>
101                 <!-- /TMPL_IF --> 
102         </div>
103 </div>
104 <!-- /TMPL_LOOP -->
105 <!-- /TMPL_IF --> 
106
107 <!-- TMPL_IF NAME="viewshelf" -->
108    <div class="yui-g">
109     <!-- TMPL_IF NAME="itemsloop" -->
110
111 <form action="/cgi-bin/koha/virtualshelves/shelves.pl" method="post" class="checkboxed">
112         <input type="hidden" name="viewshelf" value="<!-- TMPL_VAR NAME="shelfnumber" -->" />
113         <input type="hidden" name="modifyshelfcontents" value="1" />
114  <fieldset>
115   <legend>Contents of <i><!-- TMPL_VAR NAME="shelfname" --></i></legend>
116  <!--TMPL_IF NAME="manageshelf" --><p><span class="checkall"></span><span class="clearall"></span></p><!-- /TMPL_IF -->
117  <!-- TMPL_VAR name='pagination_bar'-->
118     <table>
119             <tr>
120                 <!--TMPL_IF NAME="manageshelf" --><th class="checkall">&nbsp;</th><!-- /TMPL_IF -->
121                 <!-- TMPL_UNLESS NAME="item-level_itypes" --><th>Item Type</th><!-- /TMPL_UNLESS -->
122                 <th>Title</th>
123                 <th>Author</th>
124                 <th>Date Added</th>
125                 <th>&nbsp;</th>
126             </tr>
127                 <!-- TMPL_LOOP NAME="itemsloop" -->
128                         <!-- TMPL_IF NAME="toggle" -->
129                         <tr class="highlight">
130                         <!-- TMPL_ELSE -->
131                         <tr>
132                         <!-- /TMPL_IF -->
133                         <!--TMPL_IF NAME="manageshelf" -->
134                         <td>
135                                 <!-- TMPL_IF NAME="confirm" -->
136                                 <input type="hidden"   name="CONFIRM-<!-- TMPL_VAR NAME="confirm" -->" />
137                                 <input type="checkbox" name="REM-<!-- TMPL_VAR NAME="biblionumber" -->" checked />
138                                 <!-- TMPL_ELSE -->
139                                 <input type="checkbox" name="REM-<!-- TMPL_VAR NAME="biblionumber" -->" />
140                                 <!-- /TMPL_IF -->
141                         </td>
142                         <!-- /TMPL_IF -->
143                         <!-- TMPL_UNLESS NAME="item-level_itypes" --><td>
144                 <img src="<!-- TMPL_VAR NAME="imageurl" -->" alt="<!-- TMPL_VAR NAME="description" -->" title="<!-- TMPL_VAR NAME="description" -->" /><!-- TMPL_VAR NAME="description" -->
145                         </td><!-- /TMPL_UNLESS -->
146                         <td>
147                         <!-- TMPL_IF name="BiblioDefaultViewmarc" -->
148                                 <a class="title" href="/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->">
149                         <!-- TMPL_ELSE -->
150                                 <!-- TMPL_IF name="BiblioDefaultViewisbd" -->
151                                 <a class="title" href="/cgi-bin/koha/catalogue/ISBDdetail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->">
152                                 <!-- TMPL_ELSE -->
153                                 <a class="title" href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->">
154                                 <!-- /TMPL_IF -->
155                         <!-- /TMPL_IF -->
156                         <!-- TMPL_VAR NAME="title" --> <!-- TMPL_VAR NAME="subtitle" --></a>
157                         </td>
158                         <td><!-- TMPL_VAR NAME="author" --></td>
159                         <td><!-- TMPL_VAR NAME="dateadded" --></td>
160                         <td>
161                         <!-- TMPL_UNLESS name="notforloan" -->
162                         <a href="/cgi-bin/koha/reserve/request.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->">Holds</a>
163                         <!-- /TMPL_UNLESS -->
164                         </td>
165                         </tr>
166                 <!-- /TMPL_LOOP --><!-- /itemsloop -->
167     </table>
168  </fieldset>
169  <fieldset class="action">
170         <!-- TMPL_IF name="manageshelf" -->
171             <input type="submit" value="Remove selected Items" onclick='return confirm(_("Are you sure you want to remove these items from the shelf?"))' />
172         <!-- /TMPL_IF -->
173  </fieldset>
174 </form>
175         <!-- /TMPL_IF -->
176    </div>
177 <!-- /TMPL_IF --><!-- /viewshelf -->
178
179 <!-- TMPL_IF name="manageshelf" -->
180 <div class="yui-g">
181 <form action="/cgi-bin/koha/virtualshelves/shelves.pl" method="post">
182  <fieldset class="brief">
183     <legend>Add an item to <i><!-- TMPL_VAR NAME="shelfname" --></i></legend>
184         <ol>
185             <li>
186                 <label for="addbarcode">Barcode:</label>
187                 <input name="addbarcode" type="text" id="addbarcode" size="14" />
188                 <input type="hidden" name="viewshelf" value="<!-- TMPL_VAR NAME="shelfnumber" -->" />
189                 <input type="hidden" name="modifyshelfcontents" value="1" />
190                 <input type="submit" value="Add" />
191             </li>
192         </ol>
193  </fieldset>
194 </form>
195 </div>
196 <!-- /TMPL_IF --><!-- /manageshelf -->
197
198 <!-- TMPL_IF name="debug" -->
199   <!-- TMPL_IF name="edit" --><div>Edit is on (<!-- TMPL_VAR name="shelfname" -->)</div><!-- /TMPL_IF -->
200   <!-- TMPL_IF NAME="seflag" --><div>seflag is on (<!-- TMPL_VAR name="seflag" -->)</div><!-- /TMPL_IF -->
201 <!-- /TMPL_IF -->
202
203 <!-- TMPL_IF NAME="seflag" -->
204 <div class="yui-ge">
205     <div class="yui-u first">
206     <form method="post" action="/cgi-bin/koha/virtualshelves/shelves.pl">
207         <fieldset class="rows">
208
209     <!-- TMPL_IF NAME="shelves" -->
210         <input type="hidden" name="shelves" value="1" />
211         <legend>Create a new List</legend>
212         <ol>
213         <li><label for="addshelf">Name: </label><input id="addshelf" type="text" name="addshelf" size="25" /></li>
214         <li><span class="label">Owner: </span><input type="hidden" name="owner" id="owner" value="<!-- TMPL_VAR name="loggedinuser" -->" /><!-- TMPL_VAR name="loggedinusername" --></li>
215                 <li><label for="sortfield" >Sort this list by: </label>
216                 <select name="sortfield">
217                 <!-- TMPL_IF NAME="sort_title" --><option value="title" selected="selected">Title</option><!-- TMPL_ELSE --><option value="title">Title</option><!-- /TMPL_IF -->
218                 <!-- TMPL_IF NAME="sort_author" --><option value="author" selected="selected">Author</option><!-- TMPL_ELSE --><option value="author">Author</option><!-- /TMPL_IF -->
219                 <!-- TMPL_IF NAME="sort_copyrightdate" --><option value="copyrightdate" selected="selected">Copyrightdate</option><!-- TMPL_ELSE --><option value="copyrightdate">Copyrightdate</option><!-- /TMPL_IF -->
220                 </select></li>
221         <li><label for="category">Category: </label>
222                         <select name="category" id="category">
223                   <option value="1">Private</option>
224                   <option value="2">Public</option>
225                   <option value="3">Open</option>
226                         </select></li></ol>
227     <!-- /TMPL_IF -->
228
229     <!-- TMPL_IF name="edit" -->
230                 <input type="hidden" name="op" value="modifsave" />
231                 <input type="hidden" name="shelfnumber" value="<!-- TMPL_VAR name="shelfnumber" -->" />
232                 <legend>Edit List <i><!-- TMPL_VAR name="shelfname" --></i></legend>
233                 <ol>
234                 <li><label for="shelfname">Name: </label><input type="text" id="shelfname" name="shelfname" size="25" value='<!-- TMPL_VAR name="shelfname" ESCAPE="HTML" -->' /></li>
235                 <li><label for="owner">Owner: </label><input type="hidden" id="owner" name="owner" value="<!-- TMPL_IF NAME="owner" --><!-- TMPL_VAR NAME="ownername" --><!-- TMPL_ELSE --><!-- TMPL_VAR NAME="loggedinusername" --><!-- /TMPL_IF -->" /><!-- TMPL_IF NAME="owner" --><!-- TMPL_VAR NAME="ownername" --><!-- TMPL_ELSE --><!-- TMPL_VAR NAME="loggedinusername" --><!-- /TMPL_IF --></li>
236                 <li><label for="sortfield" >Sort this list by: </label>
237                 <select name="sortfield">
238                 <!-- TMPL_IF NAME="sort_title" --><option value="title" selected="selected">Title</option><!-- TMPL_ELSE --><option value="title">Title</option><!-- /TMPL_IF -->
239                 <!-- TMPL_IF NAME="sort_author" --><option value="author" selected="selected">Author</option><!-- TMPL_ELSE --><option value="author">Author</option><!-- /TMPL_IF -->
240                 <!-- TMPL_IF NAME="sort_copyrightdate" --><option value="copyrightdate" selected="selected">Copyrightdate</option><!-- TMPL_ELSE --><option value="copyrightdate">Copyrightdate</option><!-- /TMPL_IF -->
241                 </select></li>
242                 <li><label for="category">Category: </label>
243                         <select id="category" name="category">
244                         <!-- TMPL_IF name="category1" -->
245                                 <option value="1" selected="selected">Private</option>
246                         <!-- TMPL_ELSE -->
247                                 <option value="1">Private</option>
248                         <!-- /TMPL_IF -->
249                         <!-- TMPL_IF name="category2" -->
250                                 <option value="2" selected="selected">Public</option>
251                         <!-- TMPL_ELSE -->
252                                 <option value="2">Public</option>
253                         <!-- /TMPL_IF -->
254                         <!-- TMPL_IF NAME="category3" -->
255                                 <option value="3" selected="selected">Open</option>
256                         <!-- TMPL_ELSE -->
257                                 <option value="3">Open</option>
258                         <!-- /TMPL_IF -->
259                         </select></li></ol>
260         <!-- /TMPL_IF -->
261
262                 </fieldset>
263                 <fieldset class="action"><input type="submit" value="Save" /><a href="/cgi-bin/koha/virtualshelves/shelves.pl" class="cancel">Cancel</a></fieldset>
264     </form>
265     </div>
266     <div class="yui-u">
267         <div class="help"><ul>
268             <li>A <b>Private</b> List is managed by you and can be seen only by you.</li>
269             <li> A <b>Public</b> List can be seen by everybody, but managed only by you.</li>
270             <li> A <b>Open</b> List can be seen and managed by everybody.</li>
271         </ul></div>
272     </div>
273 </div>
274 <!-- /TMPL_IF --><!-- /seflag -->
275
276 <!-- TMPL_UNLESS NAME="vseflag" -->
277         <h2>Lists</h2>
278                 <div class="toptabs">
279         <ul class="ui-tabs-nav">
280         <!-- TMPL_IF NAME="showprivateshelves" -->
281             <li id="privateshelves_tab" class="ui-tabs-selected"><a href="/cgi-bin/koha/virtualshelves/shelves.pl?display=privateshelves">Your Lists</a></li>
282         <!-- TMPL_ELSE -->
283             <li id="privateshelves_tab" class=""><a href="/cgi-bin/koha/virtualshelves/shelves.pl?display=privateshelves">Your Lists</a></li>
284         <!-- /TMPL_IF -->
285         <!-- TMPL_IF NAME="showpublicshelves" -->
286             <li id="publicshelves_tab" class="ui-tabs-selected"><a href="/cgi-bin/koha/virtualshelves/shelves.pl?display=publicshelves">Public Lists</a></li>
287         <!-- TMPL_ELSE -->
288             <li id="publicshelves_tab" class=""><a href="/cgi-bin/koha/virtualshelves/shelves.pl?display=publicshelves">Public Lists</a></li>
289         <!-- /TMPL_IF -->
290         </ul>
291         <!-- TMPL_IF NAME="showprivateshelves" -->
292                 <div id="privateshelves" class="ui-tabs-panel" style="display:block;">
293                 <!-- TMPL_ELSE -->
294                 <div id="privateshelves" class="ui-tabs-panel" style="display:none;">
295                 <!-- /TMPL_IF -->
296             <!-- TMPL_IF NAME="shelveslooppriv" -->
297                         <!-- TMPL_VAR name='pagination_bar'-->
298                         <table>
299                         <tr><th>List Name</th><th>Contents</th><th>Sort by</th><th>Type</th><th>Options</th></tr>
300                 <!-- TMPL_LOOP NAME="shelveslooppriv" -->
301                     <!-- TMPL_IF NAME="toggle" --><tr class="highlight"><!--TMPL_ELSE--><tr><!-- /TMPL_IF -->
302         <td><a href="shelves.pl?viewshelf=<!-- TMPL_VAR NAME="shelf" -->"><!-- TMPL_VAR NAME="shelfname" ESCAPE="html"  --></a></td>
303         <td><!-- TMPL_VAR NAME="count" --> item(s)</td>
304         <td><!-- TMPL_VAR NAME="sortfield" --></td>
305         <td><!-- TMPL_IF NAME="viewcategory1" -->Private<!-- /TMPL_IF -->
306                         <!-- TMPL_IF NAME="viewcategory2" -->Public<!-- /TMPL_IF -->
307                         <!-- TMPL_IF NAME="viewcategory3" -->Open<!-- /TMPL_IF -->
308                 </td>
309         <td>
310             <!-- TMPL_IF NAME="mine" -->
311                                 <form action="shelves.pl" method="get">
312                                         <input type="hidden" name="shelfnumber" value="<!-- TMPL_VAR NAME="shelf" -->" />
313                                         <input type="hidden" name="op" value="modif" />
314                                         <input type="submit" class="editshelf" value="Edit" />
315                                 </form>
316                                 <form action="shelves.pl" method="post">
317                                         <input type="hidden" name="shelves" value="1" />
318                                         <input type="hidden" name="DEL-<!-- TMPL_VAR NAME="shelf" -->" value="1" />
319                                         <!-- TMPL_IF NAME="confirm" -->
320                                         <input type="hidden" name="CONFIRM-<!-- TMPL_VAR NAME="confirm" -->" value="1" />
321                                         <input type="submit" class="confirm" value="Confirm" />
322                                         <!-- TMPL_ELSE -->
323                                         <input type="submit" class="deleteshelf" onclick="return confirmDelete(_('Are you sure you want to remove this List?'));" value="Delete" />
324                                         <!-- /TMPL_IF -->
325                                 </form>
326                         <!-- TMPL_ELSE -->
327                                 None
328                         <!-- /TMPL_IF -->
329                 </td>
330                 </tr>
331                 <!-- /TMPL_LOOP -->
332             <!-- TMPL_ELSE -->
333             <tr><td colspan="4">No Private Lists.</td></tr>
334             <!-- /TMPL_IF --><!-- /shelveslooppriv -->
335         </table>
336                 </div><!-- /privateshelves -->
337
338         <!-- TMPL_IF NAME="showpublicshelves" -->
339                 <div id="publicshelves" class="ui-tabs-panel" style="display:block;">
340                 <!-- TMPL_ELSE -->
341                 <div id="publicshelves" class="ui-tabs-panel" style="display:none;">
342                 <!-- /TMPL_IF -->
343         <!-- TMPL_IF NAME="shelvesloop" -->
344                 <!-- TMPL_VAR name='pagination_bar'-->
345         <table>
346         <tr><th>List Name</th><th>Contents</th><th>Sort By</th><th>Type</th><th>Options</th></tr>
347             <!-- TMPL_LOOP NAME="shelvesloop" -->
348                 <!-- TMPL_IF NAME="toggle" --><tr class="highlight"><!--TMPL_ELSE--><tr><!-- /TMPL_IF -->
349                 <td><a href="shelves.pl?viewshelf=<!-- TMPL_VAR NAME="shelf" -->"><!-- TMPL_VAR NAME="shelfname" ESCAPE="html"  --></a></td>
350                 <td><!-- TMPL_VAR NAME="count" --> item(s)</td>
351         <td><!-- TMPL_VAR NAME="sortfield" --></td>
352         <td><!-- TMPL_IF NAME="viewcategory1" -->Private<!-- /TMPL_IF -->
353                         <!-- TMPL_IF NAME="viewcategory2" -->Public<!-- /TMPL_IF -->
354                         <!-- TMPL_IF NAME="viewcategory3" -->Open<!-- /TMPL_IF -->
355                 </td>
356         <td>
357             <!-- TMPL_IF NAME="manageshelf" -->
358                                 <form action="shelves.pl" method="get">
359                                         <input type="hidden" name="shelfnumber" value="<!-- TMPL_VAR NAME="shelf" -->" />
360                                         <input type="hidden" name="op" value="modif" />
361                                         <input type="submit" class="editshelf" value="Edit" />
362                                 </form>
363                                 <form action="shelves.pl" method="post">
364                                         <input type="hidden" name="shelves" value="1" />
365                                         <input type="hidden" name="DEL-<!-- TMPL_VAR NAME="shelf" -->" value="1" />
366                                         <!-- TMPL_IF NAME="confirm" -->
367                                         <input type="hidden" name="CONFIRM-<!-- TMPL_VAR NAME="confirm" -->" value="1" />
368                                         <input type="submit" class="confirm" value="Confirm" />
369                                         <!-- TMPL_ELSE -->
370                                         <input type="submit" class="deleteshelf" onclick="return confirmDelete(_('Are you sure you want to remove this List?'));" value="Delete" />
371                                         <!-- /TMPL_IF -->
372                                 </form>
373                         <!-- TMPL_ELSE -->
374                                 None
375                         <!-- /TMPL_IF -->
376                 </td>
377                 </tr>
378             <!-- /TMPL_LOOP -->
379         </table>
380         <!-- TMPL_ELSE -->
381                 <!-- TMPL_IF NAME="showpublicshelves" -->No Public Lists.<!-- /TMPL_IF -->
382         <!-- /TMPL_IF --><!-- /shelvesloop -->
383         </div><!-- /publicshelves -->
384                 </div>
385 <!-- /TMPL_UNLESS -->
386
387 </div>
388 </div>
389 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->