//<script>
var w = null;
function popUpWindow(picture,titel,legende,x,y) {
   if (w!=null) {if(!w.closed){w.close();}}
   var xx; var yy;
   xx = x + 40; yy = y + 100;
   w = window.open("","Zoom","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,height=" + yy + ",width=" + xx + ",top=30,left=30");
   w.document.write('<HTML><HEAD><TITLE>Zoom «' + titel + '»</TITLE></HEAD>');
   w.document.write('<BODY BGCOLOR=#c6c6c6 TEXT=#000000 LINK=#FF0000>');
   w.document.write('<CENTER><IMG SRC="' + picture + '" ALT="' + titel + '" HEIGHT="' + y + 'WIDTH="' + x + '"></CENTER>');
   w.document.write('<P><CENTER><FONT SIZE="-2" FACE="Tahoma,Arial,Helvetica">' + legende + '</FONT></CENTER></P>\n');
   w.document.write('<P><CENTER><FONT SIZE="-2" FACE="Tahoma,Arial,Helvetica">');
   w.document.write('<a href="javascript: self.close();">&lt;&lt; Fenster schliessen</A></FONT></CENTER></P>');
   w.document.write('</BODY></HTML>');
   w.focus();
}

function openImageGallery(url) { //v3.0
  leftPos = 0
  if (screen) {
     leftPos = screen.width-875
  }
  galleryWindow = window.open( url, "Bildergalerie", 'toolbar=no, location=no, scrollbars=yes, width=860, height=860, left='+leftPos+', top=100, alwaysRaised=true, resizable=yes');
  self.searcher=1;
  if (galleryWindow.opener == null) searchWindow.opener = self;
}
