
  function anzeigen_Bild(name,img_width,img_height,win_width,win_height){
   doc=window.open("", "fenster", "width="+win_width+",height="+win_height+",menubar=0,status=0,scrollbars=0");
   doc.document.open("text/html");
   doc.document.write('<html><title>Bild</title><body bgcolor=#CADDD0>');
   doc.document.write('<p><img src="'+name+'" width="'+img_width+'" height="'+img_height+'">');
   doc.document.write('</p></body></html>');
   doc.document.close();
   doc.focus()
  }
