//   ::sector27 GmbH, Dorsten - cb^2
//   http://www.sector27.de
//   CGI-/ Perl-Programmierungen, Webapplikationen, 
//   HTML, XHTML, DHTML, CSS, JavaScript, Webdesign 
//   Alle Rechte vorbehalten  - (c)2003 by sector27

function zoom(bild, b, h,s) {
   if(!s){
	Fenster1=open("","_new","width="+b+",height="+h+",left=250,top=150,resizable=yes, dependent=yes");
   }else{
   Fenster1=open("","_new","width="+b+",height="+h+",left=250,top=150,resizable=yes,dependent=yes,scrollbars=yes");
   }
	with(Fenster1.document){
		open();
		write("<html>");
		write("<head><title>INFA Lentjes - Detailbild/Detail picture</title></head>");
		write("<body topmargin='0' leftmargin='0' marginheight='0' marginwidth='0' bgcolor=#000000 onBlur=self.close()>");
        write("<div id=\"xbild\" style=\"position:absolute; left:0px; top:0px;\">");
		write("<a href='JavaScript:self.close();'><img src='"+bild+"' border='0' alt='Ein Klick ... schließt dieses Fenster'></a>");
        write("</div>");
		write("</body>");
		write("</html>");
		close();
	}
//	Fenster1.resizeTo(b+20,h+40);
	Fenster1.focus();
}
