<!--
// adresse.js  10/00
// --------------------
// Gibt Fussnote mit Home- und mail-link an
// Include-Anweisung: Am Ende des Seitenbereichs
// Site-location: jede Seite
//
function to_home() {
	loc=self.location.pathname;
	newloc=loc.substr(0,loc.indexOf("lbwww")+6)+"index.htm";
	if (self != top) {
//		parent.location.replace(newloc);
		parent.location.href = newloc;
	} else {
//		location.replace(newloc);
		location.href = newloc;
	}
}
// document.writeln('<hr align="center">');
document.writeln('<p align="center">');
document.writeln('<font size="1" COLOR="Black">© Author:  Werner R. Ottlik&nbsp;&nbsp;&nbsp;&nbsp;');
document.writeln('Stand: ' + document.lastModified + '</font>');
document.writeln('<font size="2" COLOR="Black"><br><a href="mailto:webmaster@ibo-ottlik.de">webmaster@ibo-ottlik.de</a> </font>');
document.writeln('</p>');
//-->

