//grosses Bild im Fenster oeffnen
doc = null;
  function oeffne_Fensterbild(bildname,b_width,b_height,f_width,f_height,title){
   doc=window.open("", "fenster", "width="+f_width+",height="+f_height+",left=20,top=20,menubar=0,status=0,scrollbars=0");
   doc.document.open("text/html");
   doc.document.write('<html><head><META HTTP-EQUIV="imagetoolbar" CONTENT="no"><title>'+title+'</title></head><body>');
   doc.document.write('<img src="'+bildname+'" width="'+b_width+' "height="'+b_height+'">');
   doc.document.write('<script language="JavaScript" src="http://www.rotary1850.org/distrikt/norightclick.js" type="text/javascript"></script></body></html>');
   doc.document.close();
   doc.focus();
  }