// JavaScript Document
function passwort () {
  var pw = "albert"
  var Eingabe = window.document.pwabfrage.Eingabe.value
  if (Eingabe != pw) {
    alert("Wrong password! Please contact the UEMS Secretary to get the right password-information");
  } else {
    window.open ("html/start.html");
	window.close();
  }
}

