function BildPopup(img_url, img_title, img_width, img_height)
{
wnd = open("",
        "Bildanzeige",
        "width=" + (img_width) + ",height=" + (img_height) +
        ",resizable,dependent,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0")
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>' + img_title + '</title></head>')
  writeln('<body bgcolor="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" style="margin:0px; overflow:hidden">')
  writeln('<a href="javascript:self.close()"><img src="' + img_url +
          '" width="' + img_width + '" height="' + img_height +
          '" border="0" alt="Bild" title="Fenster schlie&szlig;en"></a>')
  writeln('</body></html>')
  close()
}
wnd.focus()
}
