//
// Dateiname:     bottom.js - JavaScript-Datei
// Beschreibung:  Zum Erzeugen der Fusszeile der Homepage
//                (mit Copyright-Information, e-mail Kontakt und Modifikationsdatum)
//
// Erstellt im Dezember 1998 von Peter Bittner
//
// Web:   http://www.sbox.tugraz.at/home/b/bimbo
// Mail:  bimbo@sbox.tugraz.at
//
// Copyright (c) Dezember 1998 by Peter Bittner
//


//----
// Procedure: DateOfDocument()
//
// Gibt das Modifikationsdatum des Dokuments aus.
//-------------------
function DateOfDocument()
{
 var datum = new Date(document.lastModified);
 var tag   = datum.getDate();
 var monat = datum.getMonth()+1;	// JavaScript: Monate 0-11
 var jahr  = datum.getYear();
 while (jahr < 1975)
   jahr += 100;
 var output = tag + "." + monat + "." + jahr;
 document.writeln("<p><font face=\"Arial narrow, Arial, Helvetica\" size=2>Zuletzt aktualisiert am:&nbsp;");
 if (output == "1.1.1970")		// Fehler abfangen
  document.write(document.lastModified);
 else
  document.write(output);
 document.writeln("</font>");
} // end of DateOfDocument()


//----
// Procedure: DisplayBottomline()
//
// Gibt die Fusszeile (mit Copyright-Information und email-Adresse) aus.
//-------------------
function DisplayBottomline()
{
 document.writeln("<p><table width=\"100%\" cellspacing=0 cellpadding=0 border=0>");
 document.writeln("<tr><td colspan=3><hr noshade></td></tr>");

 document.writeln("<tr><td valign=\"top\"><a href=\"#top\"><img src=\"img/toparrow.gif\"");
 document.writeln(" width=34 height=14 border=0 alt=\"Seitenanfang\"></a></td>");

 document.writeln("<td valign=\"top\" align=\"center\"><ul>");
 document.writeln("<font face=\"Arial Narrow, Arial, Helvetica\" size=2><i><b>Hinweise und Anregungen bitte an:&nbsp;");
 document.writeln("<a href=\"mailto:bimbo@sbox.tugraz.at?subject=Kommentar zu Bimbos Homepage&body=Bimbos Homepage ist toll!\">bimbo@sbox.tugraz.at</a>");
 document.writeln("</b></i></font><br><font face=\"Arial, Helvetica\" size=2>");
 document.writeln("Copyright &copy; 1999-2003 by Peter Bittner.</font></ul></td>");

 document.writeln("<td valign=\"top\"><a href=\"http://kmeleon.sourceforge.net\" target=\"_blank\"><img src=\"img/kmeleon.gif\"");
 document.writeln(" align=\"right\" width=88 height=32 border=0 alt=\"Webbrowser K-Meleon. Get it now!\"></a></td></tr>");
// document.writeln("<td valign=\"top\"><a href=\"http://www.gesundheitsfoerderung.at\"><img src=\"img/ggf-icon.gif\"");
// document.writeln(" align=\"right\" width=50 height=50 border=0 alt=\"My coolest project!\"></a></td></tr>");
 document.writeln("</table>");

 DateOfDocument();		// Aktualisierungsdatum ausgeben
} // end of DisplayBottomline()


//-- "bottom.js" ------------------------------------------- EOF --
