function bild(img_url, img_title, zeilen_num, img_width, img_height)
{

  zeilen_num = 64 +( zeilen_num -1)*20

  wnd = open("",
             "Bildanzeige",
             "width=" + (img_width + 32) + ",height=" + (img_height + zeilen_num) +
             ",toolbar=0,location=0,directories=0,status=0,menubar=0,top=0" +
             ",scrollbars=0,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><titel><div class=text align=center>" + img_title + "</div></titel>")
    writeln("<BASE HREF=\"" + baseadr + "\"></HEAD>")
    writeln("<BODY background='" + pfad + "LAYOUT/BACK/Back.gif'><link rel='stylesheet' href='"+pfad+"css.css' type='text/css'>")
    writeln("<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=4 WIDTH=\""+img_width+"\" HEIGHT=\""+img_height+"\">")
    writeln("<TR><TD ALIGN=CENTER VALIGN=MIDDLE><IMG SRC=\"" + img_url +
            "\" WIDTH=" + img_width +
            " HEIGHT=" + img_height +
            " onClick=\"javascript:self.close()\" HSPACE=0 VSPACE=0 alt=\"Klicken um das Fenster zu schlie&szlig;en\"></TD></TR>")
    write("<TR>")
	writeln("</TABLE>")
    writeln("</BODY></HTML>")
    close()
  }
  wnd.focus()
}

function guest()
{
	F1 = window.open("http://23936.multiguestbook.com","Guest","width=610,height=800,left=0,top=0,scrollbars=1,resizable");
}



