<!--
// adresse.js  10/00
// --------------------
// Gibt Fussnote mit Home- und mail-link an
// Include-Anweisung: Am Ende des Seitenbereichs
// Site-location: jede Seite
//

// Stand Script by IBO Ottlik; should work in all browsers
	var a;
	a=new Date(document.lastModified);
	lm_year=a.getYear();
	if (lm_year<1000){ 				//just in case date is delivered with 4 digits
		if (lm_year<70){
		lm_year=2000+lm_year;
		}
		else lm_year=1900+lm_year;
	}								//end workaround
	lm_month=a.getMonth()+1;
	if (lm_month<10){
		lm_month='0'+lm_month;
	}
	lm_day=a.getDate();
	if (lm_day<10){
		lm_day='0'+lm_day;
	}
stunde=a.getHours(),
minute=a.getMinutes();
if (stunde<10) {
stunde="0"+stunde;
}
if (minute<10) {
minute="0"+minute;
}
// -->


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.write(" Stand: " + lm_day+'.'+lm_month+'.'+lm_year + "  " + stunde + ":" + minute + '</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>');
//-->
