function Geheim () {
  var Passwort = "BioMon!";
  var Eingabe = window.prompt("Please insert your password", "");
  if (Eingabe != Passwort) {
    alert("Wrong Password!");
  } else {
    location.href = "internal.htm";
  }
}