
function bild_fenster(b, h, bild)
{
  fenster = open("","Bildfenster","resizable=1,dependent=1" + (b ? (",width=" + b) : "") + (h ?  (",height=" + h) : ""))

 
  with(fenster.document)
  {
    open("text/html")
    writeln("<HTML><HEAD><TITLE>Freudhöfer</TITLE></HEAD>")
    writeln("<BODY>")

      write("<TABLE WIDTH=\"100%\" HEIGHT=\"100%\"><TR ALIGN=CENTER VALIGN=CENTER><TD>")
      write("<img src=\""+bild+"\">")
      writeln("</TD></TR>")
     
      write("<TR ALIGN=LEFT VALIGN=BOTTOM><TD>")
      write("<A HREF=\"javascript:self.close()\"><font face=Arial size=2><STRONG>Fenster schließen</STRONG></font></A>")
      writeln("</TD></TR>")
      writeln("</TABLE>")

    writeln("</BODY></HTML>")
    close()
  }
  fenster.focus()
}

function bild_fensters(b, h, bild)
{
  fenster = open("","Bildfenster","resizable=1,dependent=1,scrollbars=1" + (b ? (",width=" + b) : "") + (h ?  (",height=" + h) : ""))

 
  with(fenster.document)
  {
    open("text/html")
    writeln("<HTML><HEAD><TITLE>Freudhöfer</TITLE></HEAD>")
    writeln("<BODY>")

      write("<TABLE WIDTH=\"100%\" HEIGHT=\"100%\"><TR ALIGN=CENTER VALIGN=CENTER><TD>")
      write("<img src=\""+bild+"\">")
      writeln("</TD></TR>")
     
      write("<TR ALIGN=LEFT VALIGN=BOTTOM><TD>")
      write("<A HREF=\"javascript:self.close()\"><font face=Arial size=2><STRONG>Fenster schließen</STRONG></font></A>")
      writeln("</TD></TR>")
      writeln("</TABLE>")

    writeln("</BODY></HTML>")
    close()
  }
  fenster.focus()
}


function on(image)
{
  if (BrowserVer =="1")	
    {
    document[image].src="/images/"+image+"_on.gif";
    }
}



function off(image)
{
  if (BrowserVer =="1")	
    {
    document[image].src="/images/"+image+"_off.gif";
    }
}

