function bild(img_url, img_title, img_width, img_height, img_desc)
{
  wnd = open("",
             "Bildanzeige",
             "width=" + (img_width + 60) + ",height=" + (img_height + 100) +
             ",innerWidth=" + (img_width + 20) + ",innerHeight=" + (img_height + 100) +
             ",toolbar=0,location=0,directories=0,status=0,menubar=0" +
             ",scrollbars=yes,resizable=no,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>" + img_title + "</TITLE>")
    writeln("<BASE HREF=\"" + baseadr + "\"><link rel=\"stylesheet\" media=\"screen\" type=\"text/css\" href=\"css/styles7.css\"></HEAD>")
    writeln("<BODY BGCOLOR=WHITE>")
    writeln("<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=4 WIDTH=\"100%\" HEIGHT=\"100%\">")
    writeln("<TR><TD ALIGN=CENTER VALIGN=MIDDLE><IMG SRC=\"" + img_url +  
    				"\" WIDTH=" + img_width +
            " HEIGHT=" + img_height +
            " HSPACE=0 VSPACE=0 ALT=\"" + img_title + "\"></TD></TR>")
    write("<TR><TD DIR=rtl ALIGN=CENTER VALIGN=BOTTOM style=\"font-family:tahoma;color:red;direction:rtl;font-size:10pt;\">")
    write(img_desc)
    writeln("</TD></TR>")
    writeln("</TABLE>")
    writeln("</BODY></HTML>")
    close()
  }
  wnd.focus()
}
function info(desc)
{
  wnd = open("",
             "Info",
             "width=300,height=200" +
             ",innerWidth=160,innerHeight=160" +
             ",toolbar=0,location=0,directories=0,status=0,menubar=0" +
             ",scrollbars=yes,resizable=no,dependent=yes")

  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> Info </TITLE>")
    writeln("<BASE HREF=\"" + baseadr + "\"><link rel=\"stylesheet\" media=\"screen\" type=\"text/css\" href=\"css/styles7.css\"></HEAD>")
    writeln("<BODY BGCOLOR=WHITE>")
    writeln("<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=4 WIDTH=\"100%\" HEIGHT=\"100%\">")
     write("<TR><TD style=\"font-family:tahoma;color:black;direction:rtl;font-size:10pt;direction:rtl;text-align:right\">")
    write(desc)
    writeln("</TD></TR>")
    writeln("</TABLE>")
    writeln("</BODY></HTML>")
    close()
  }
  wnd.focus()
}
