function oeffne_Fensterbild(b_name,b_url,b_width,b_height)
{
   doc=window.open("", "", "width="+b_width+",height="+b_height+",menubar=0,status=0,scrollbars=0");
   doc.document.open("text/html");
   doc.document.write('<html><title>Popup</title><body bgcolor=#336699 LEFTMARGIN="0" MARGINWIDTH="0" TOPMARGIN="0" MARGINHEIGHT="0">');
   doc.document.write('<p align=center><a href="'+b_url+'" target="_blank"><img src="'+b_name+'" width="'+b_width+'" height="'+b_height+'" border="0">');
   doc.document.write('</a></p></body></html>');
   doc.document.close();
   doc.focus()
  }