function Passwort() {
var pwfenster = window.open('./intern_pw.htm', 'temp', 'width=400, height=150, left=300, top=200, dependent=yes, resizable=1');
}

function Abfrage() {
var pw = "heimgast";
var browser = navigator.userAgent.toLowerCase();
var opera = (browser.indexOf("opera") != -1);

UserEingabe = this.document.Formular.Eingabe.value;
	if(UserEingabe != pw) {
		alert("Falsches Passwort!"); 
		this.document.Formular.Eingabe.value = "";
		this.document.Formular.Eingabe.focus();
	} 
	else {
	opener.location.href = 'mitteilungen.php' ;
	window.close();
	}
}

function Passwort1() {
var pwfenster = window.open('../intern_pw.htm', 'temp', 'width=400, height=150, left=300, top=200, dependent=yes, resizable=1');
}

function Abfrage() {
var pw = "heimgast";
var browser = navigator.userAgent.toLowerCase();
var opera = (browser.indexOf("opera") != -1);

UserEingabe = this.document.Formular.Eingabe.value;
	if(UserEingabe != pw) {
		alert("Falsches Passwort!"); 
		this.document.Formular.Eingabe.value = "";
		this.document.Formular.Eingabe.focus();
	} 
	else {
	opener.location.href = '../mitteilungen.php' ;
	window.close();
	}
}

