/* ##############################################################*/
/* ## Script zum erzeugen passgenauer Popup-Fenster für Bilder ##*/
/* ##############################################################*/

function oeffne_Fensterbild(bildname,b_width,b_height,f_width,f_height){
   doc=window.open("", "fenster", "width="+f_width+",height="+f_height+",menubar=0,status=0,scrollbars=0");
   doc.document.open("text/html");
   doc.document.write('<html><head><title>Bild</title><style type="TEXT/CSS">Body {margin: 0pt;}</style></head>');
   doc.document.write('<body bgcolor=#000000>');
   doc.document.write('<p align=center><img src="'+bildname+'" width="'+b_width+'" height="'+b_height+'">');
   doc.document.write('</p></body></html>');
   doc.document.close();
   doc.focus()
 }

