<!--
function FensterOeffnen0 (Adresse) {
  Fenster1 = window.open(Adresse,"Zweitfenster", "width=900,height=600,left=20,top=20,scrollbars=no,toolbar=no,menubar=no,status=no,resizable=no");
  Fenster1.focus();
}
function FensterOeffnen (Adresse) {
  Fenster1 = window.open(Adresse,"Zweitfenster", "width=800,height=600,left=20,top=20,scrollbars=no,toolbar=no,menubar=no,status=no,resizable=no");
  Fenster1.focus();
}
function FensterOeffnen01 (Adresse) {
  Fenster1 = window.open(Adresse,"Zweitfenster", "width=495,height=660,left=10,top=10,scrollbars=no,toolbar=no,menubar=no,status=no,resizable=no");
  Fenster1.focus();
}
function FensterOeffnen02 (Adresse) {
  Fenster1 = window.open(Adresse,"Zweitfenster", "width=800,height=800,left=20,top=20,scrollbars=yes,toolbar=no,menubar=no,status=no,resizable=no");
  Fenster1.focus();
}
function FensterOeffnen03 (Adresse) {
  Fenster1 = window.open(Adresse,"Zweitfenster", "width=800,height=1480,left=20,top=20,scrollbars=yes,toolbar=no,menubar=no,status=no,resizable=no");
  Fenster1.focus();
}


function FensterOeffnenX (Adresse) {
  Fenster1 = window.open(Adresse,"Zweitfenster", "width=150,height=260,left=650,top=200,scrollbars=no,toolbar=no,menubar=no,status=no,resizable=no");
  Fenster1.focus();
}


function open_window(name, url, left, top, width, height, toolbar, menubar, statusbar, scrollbar, resizable)
{
  toolbar_str = toolbar ? 'yes' : 'no';
  menubar_str = menubar ? 'yes' : 'no';
  statusbar_str = statusbar ? 'yes' : 'no';
  scrollbar_str = scrollbar ? 'yes' : 'no';
  resizable_str = resizable ? 'yes' : 'no';
  window.open(url, name, 'left='+left+',top='+top+',width='+width+',height='+height+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
}

function intern () {
  var Passwort = "Chinakohl";
  var Eingabe = window.prompt("Bitte geben Sie das Passwort ein", "");
  if (Eingabe != Passwort) {
    alert("Falsches Passwort!");
  } else {
    location.href = "internes.html";
  }
}
// -->
