function neuesFenster (bild, titel) {
  uri = "http://www.dekorbaender.de/skripte/bildAnzeigen.php?bild=" + encodeURIComponent(bild) 
        + "&titel=" + encodeURIComponent(titel);
  window.open(uri, 
              "_blank", 
              "width=600, height=400, left=150, top=150, popupwindow");
}
function neuesFenster2 (bild, titel) {
  uri = "http://www.dekorbaender.de/skripte/bildAnzeigen2.php?bild=" + encodeURIComponent(bild) 
        + "&titel=" + encodeURIComponent(titel);
  window.open(uri, 
              "_blank", 
              "width=600, height=400, left=150, top=150, popupwindow");
}
