f1=false

function fenster(bildurl) {
  if(f1&&f1.closed==false)
    f1.close()
  
  f1=window.open("","","width=760,height=420,resizable=no,scrollbars=no,menubar=no")
  
  with (f1.document) {
    open()
    write('<title>HWPH Historisches Wertpapierhaus AG</title>')
    write('<body bgcolor="#000000" topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">')
    write('<table width="760"><tr><td height="420" align=center valign=middle>')
    write('<img src="'+bildurl+'">')
    write('</td></tr></table>')
    write('</body>')
    close()
  }
}