function bildgross(img_url, img_title, img_width, img_height, img_text)
{
  wnd = open("",
             "Bildanzeige",
             "width=" + (img_width + 62) + ",height=" + (img_height + 84) +
             ",innerWidth=" + (img_width + 62) + ",innerHeight=" + (img_height + 84) +
             ",toolbar=0,location=0,directories=0,status=0,menubar=0" +
             ",scrollbars=0,resizable,dependent")

  var baseadr = location.href
  var lastsl  = location.href.lastIndexOf("\\")
  var img_text = 'SAV Pliete e.V. L&uuml;beck'
  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_text + "</TITLE>")
    writeln("<BASE HREF=\"" + baseadr + "\"></HEAD>")
    writeln("<BODY onClick=wnd.close()  >")
    
    writeln("<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH=\"100%\" HEIGHT=\"100%\">")
     write("<TR><TD ALIGN=CENTER VALIGN=BOTTOM>")
     write("<font size=2 face=Verdana><b>" + img_title + "</b></font>")
    writeln("</TD></TR>") 
    writeln("<TR><TD ALIGN=CENTER VALIGN=MIDDLE ><A HREF=\"javascript:self.close()\"><IMG SRC=\"" + img_url +
            "\" WIDTH=" + img_width +
            " HEIGHT=" + img_height +
            " HSPACE=0 VSPACE=0 ALT=\"" + img_title + "\"></A></TD></TR>")
    write("<TR><TD ALIGN=CENTER VALIGN=BOTTOM>")
    write("<font size=1 face=Verdana>ein Klick im Bild, schlie&szlig;t das Fenster</font>")
    writeln("</TD></TR>")
    writeln("</TABLE>")
    writeln("</BODY></HTML>")
    close()
  }
  wnd.focus()
    
}

