<!-- Created on 05.08.2010 -->

// allgemeine Daten für jede Seite
var MailName = "alfons";
var MailDomain = "dojozuerich6.ch";

// Seitenfuss schreiben absoluter Position von oben
function SeitenFuss(Menu, TopDiv, HeightDiv, Left, GoAnfang) {
// Menu hat 1, wenn Seite mit Menu, sonst 0
// TopDiv (Top unterster Bereich auf der Seite)
// HeightDiv (Höhe unterster Bereich auf der Seite)
// Left hat Position links (36), und wenn Agenda (11)
// GoAnfang hat 1, wenn Link zum Seitenanfang eingerichtet werden soll, sonst 0

// Parameter zum Erscheinungsbild Seitenfuss
   var RandAdd = 16;                      // Randzugabe ab unterstem Bereich
   var AbsAdr = 18;                       // vertikaler Abstand Adresse ab Bottomlinie
   var AbsLC = 65;                        // vertikaler Abstand Verlinkung und Copyright ab Bottomlinie
   var RandLinks = 36;                    // horizontaler Abstand Links 1. Vertikallinie

   var VSum;                              // Summe vertikal
   var HSum;                              // Summe horizontal
   var Kopf;                              // Höhe Kopfbereich

   if (Menu==1)
      Kopf = 158
   else
      Kopf = 78;

   VSum = TopDiv + HeightDiv + RandAdd - Kopf;
   document.write('<img src="../allPic/vlinie.gif" alt="" width="1" height="' + VSum + '" style="position: absolute; left: ' + Left + 'px; top: ' + Kopf + 'px">');
   VSum = TopDiv + HeightDiv + RandAdd;
   HSum = 616 + RandLinks - Left;
   document.write('<img src="../allPic/hlinie.gif" alt="" width="' + HSum + '" height="1" style="position: absolute; left: ' + Left + 'px; top: ' + VSum + 'px">');
   document.write('<img src="../allPic/vlinie.gif" alt="" width="1" height="114" style="position: absolute; left: 651px; top: ' + VSum + 'px">');
   VSum = TopDiv + HeightDiv + RandAdd + AbsAdr;
   document.write('<div class="klein" style="position: absolute; left: 56px; top: ' + VSum + 'px; width: 575px; height: 45px">');
   document.write('<center>');
   document.write('Dojo Zürich 6, Riedtlistr. 27, 8006 Zürich<br>Tel. 044 350 11 71, E-Mail <a href=\"mailto:' + MailName + '@' + MailDomain + '\">' + MailName + '@' + MailDomain + '<\/a></center>');
   document.write('</center>');
   document.write('</div>');
   VSum= TopDiv + HeightDiv + RandAdd + AbsLC;
   document.write('<div class="klein" style="position: absolute; left: 56px; top: ' + VSum + 'px; width: 156px; height: 14px">');

   if (GoAnfang==1)
      document.write('<img src="../allPic/trileft.gif" alt="" width="5" height="10">&nbsp;<a href="../index.html">Startseite</a>&nbsp;&nbsp;<img src="../allPic/triup.gif" alt="" width="10" height="5">&nbsp;<a href="#SeitenAnfang">Seitenanfang</a>')
   else
      document.write('<img src="../allPic/trileft.gif" alt="" width="5" height="10">&nbsp;<a href="../index.html" target="blank">Startseite</a>');

   document.write('</div>');
   document.write('<div class="klein" align="right" style="position: absolute; left: 505px; top: ' + VSum + 'px; width: 126px; height: 14px">');
   document.write('© Alfons Lötscher');
   document.write('</div>');

};
