// JavaScript Document
function FensterOeffnen($id,$bild) {	
  Fenster = window.open("windows.php?id="+$id+"&dex="+$bild+"", "Zweitfenster1", "width=700,height=650,left=350,top=180");
  if (Fenster.locationbar) {
    if (Fenster.locationbar.visible == false) {
      Fenster.close();
      Neufenster = window.open("windows.php?id="+$id+"&dex="+$bild+"", "Zweitfenster2", "width=700,height=650,left=350,top=180,location=yes");
      Neufenster.focus();
    }
  }
}
function LoginOeffnen() {	
  Fenster = window.open("formular.php", "Zweitfenster1", "width=860,height=680,left=320,top=120,scrollbars=yes");
  if (Fenster.locationbar) {
    if (Fenster.locationbar.visible == false) {
      Fenster.close();
      Neufenster = window.open("windows.php", "Zweitfenster2", "width=860,height=680,left=320,top=120,scrollbars=yes,location=yes");
      Neufenster.focus();
    }
  }
}