function zoom(f){
   ZoomWindow = window.open("","Bildzoom","width=640,height=480,dependent=yes");
   with (ZoomWindow.document) {
     open();
     writeln("<html>");
     writeln("<head>");
     writeln("<title>BB-faehrt-Erdgas.de - Bildzoom</title>");
     writeln("</head>");
     writeln("<body bgcolor='#ffffff' topmargin='0' leftmargin='0' marginheight='0' marginwidth='0'  onBlur='this.close()'>");
     writeln("<img src='"+ f +"'width='640' heigth='480'>");
     writeln("</body>");
     writeln("</html>");
     close();
   }
 }