function b(picture, img_width, img_height, text)
{
  wnd = open("",
             "Bildanzeige",
             "width=" + (img_width + 32) + ",height=" + (img_height + 130) +
             ",innerWidth=" + (img_width + 32) + ",innerHeight=" + (img_height + 64) +
             ",toolbar=0,location=0,directories=0,status=0,menubar=0" +
             ",scrollbars=0,resizable,dependent")

  var baseadr = location.href
  var lastsl  = location.href.lastIndexOf("\\")
  if(lastsl >= 0)
    baseadr = baseadr.substring(0, lastsl + 1)
  else
  {
    lastsl = location.href.lastIndexOf("/")
    if(lastsl >= 0)
      baseadr = baseadr.substring(0, lastsl + 1)
  }
  with(wnd.document)
  {
    open("text/html")
    writeln("<HTML>")
    writeln("<HEAD><TITLE>Irishterrier.tk</TITLE>")
    writeln("<!-- <link rel=stylesheet type=\"text/css\" href=\"stil.css\"> -->")
    writeln("<BASE HREF=\"" + baseadr + "\"></HEAD>")
    writeln("<BODY BGCOLOR=WHITE>")
    writeln("<TABLE align=center BORDER=0 CELLSPACING=0 CELLPADDING=4 WIDTH=\"100%\" HEIGHT=\"100%\">")
    writeln("<TR height=" + img_height + "><TD ALIGN=left VALIGN=top height=" + img_height + "><img src=" + picture + " width=" + img_width + "height=" + img_height + "border=1></TD></TR>")
    write("<TR><TD ALIGN=LEFT VALIGN=top>")
    write("<font size=2 face=Verdana,Arial,sans-serif color=black>" + text + "</font>")
    writeln("</TD></TR>")
    write("<tr><td valign=bottom><center><p><A HREF=\"javascript:self.close()\"><font color=black size=1 face=Arial><b>Fenster schließen!</b></font></A></p></center></td></tr>")
    writeln("</TABLE>")
    writeln("</BODY></HTML>")
    close()
  }
  wnd.focus()
}
