function galerie(g_nr,nr)
{
  Fensteroptionen="toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0";
  host=window.location.host;
  if(host=="") host="127.0.0.1";
  Breite=620;
  Hoehe=545;
  if((host=="127.0.0.1")||(host=="p4-haupt"))
    host2=host;
  else
    host2="www.sb-kuebler.de";
  Adresse="http://"+host2+"/php/mk-galerie.php?g_nr="+g_nr+"&h="+host+"&nr="+nr;
//  alert(Adresse);
  Grafikfenster=window.open(Adresse, "", Fensteroptionen + ',width=' + Breite + ',height=' + Hoehe);
  Grafikfenster.focus();

}

function bild(GrafikURL, Breite, Hoehe)
{
  Fensteroptionen="toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0";

  Grafikfenster=window.open("", "", Fensteroptionen + ',width=' + Breite + ',height=' + Hoehe);
  Grafikfenster.focus();
  Grafikfenster.document.open();
  with(Grafikfenster)
  {
    document.write("<html><head>");
    document.write("<title>Grafikanzeige</title>");
    document.write("</head>");
    document.write("<body leftmargin=\"0\" marginheight=\"0\" marginwidth=\"0\" topmargin=\"0\">");
    document.write("<img border=\"0\" onclick=\"window.close();\" src=\"../bilder/"+ GrafikURL +"\" title=\"Zum Schließen auf das Foto klicken\">");
    document.write("</body></html>");
  }
}

function bild1(datei) {
 window.open('http://127.0.0.1/php/bild1.php?h='+window.location.host+'&n='+datei,'test',
 'status=no,toolbar=no,location=no,menu=no,top=0,left=0,width=750,height=600,resizable=yes,scrollbars=yes');
return
}
