restoring head
[mir.git] / etc / producer / batchnav.template
index 0e7342c..258ae85 100755 (executable)
@@ -1,2 +1,35 @@
-${batch.first.index}<p>
-<list batch.all as b><a href="${docPrefix}${b.identifier}${docSuffix}">${b.index}</a><if b.index!=batch.last.index>&nbsp;| </if></list>
+<comment>
+<!-- old version -->
+       ${batch.first.index}<p>
+       <list batch.all as b><a href="${docPrefix}${b.identifier}${docSuffix}">${b.index}</a><if b.index!=batch.last.index>&nbsp;| </if></list>
+</comment>
+
+
+<script type="text/javascript">
+<!--
+function Go(x) {
+ if(x == "nothing") {
+   document.forms[0].reset();
+   document.forms[0].elements[0].blur();
+   return;
+ }
+ else if(x == "end")
+   top.location.href = parent.frames[1].location;
+ else {
+   location.href = x;
+   document.forms[0].reset();
+   document.forms[0].elements[0].blur();
+ }
+}
+//-->
+</script>
+<form action="">
+<select size=1 name="Auswahl"
+  onChange="Go(this.form.Auswahl.options[this.form.Auswahl.options.selectedIndex].value)"
+  class="navform">
+<option value="nothing">Seite ausw&auml;hlen</option>
+<list batch.all as b>
+<option value="${docPrefix}${b.identifier}${docSuffix}">${b.index}</option></list>
+<option value="../index.shtml">STARTPAGE</option>
+</select>
+</form>
\ No newline at end of file