took out german, put in english
[nyc.indymedia.org.git] / etc / producer / batchnav.template
1 <comment>
2 <!-- old version -->
3         ${batch.first.index}<p>
4         <list batch.all as b><a href="${docPrefix}${b.identifier}${docSuffix}">${b.index}</a><if b.index!=batch.last.index>&nbsp;| </if></list>
5 </comment>
6
7
8 <script type="text/javascript">
9 <!--
10 function Go(x) {
11  if(x == "nothing") {
12    document.forms[0].reset();
13    document.forms[0].elements[0].blur();
14    return;
15  }
16  else if(x == "end")
17    top.location.href = parent.frames[1].location;
18  else {
19    location.href = x;
20    document.forms[0].reset();
21    document.forms[0].elements[0].blur();
22  }
23 }
24 //-->
25 </script>
26 <form action="">
27 <select size=1 name="Jump"
28   onChange="Go(this.form.Jump.options[this.form.Jump.options.selectedIndex].value)"
29   class="navform">
30 <option value="nothing">Jump to Page</option>
31 <list batch.all as b>
32 <option value="${docPrefix}${b.identifier}${docSuffix}">${b.index}</option></list>
33 <option value="../index.html">STARTPAGE</option>
34 </select>
35 </form>