function zoom(name,x,y) {
var zoom=window.open("","zoomwindow","width="+x+",height="+y+",scrollbars=no,menubar=no,status=no,toolbar=no,directories=no");
zoom.document.open();
zoom.document.write("<html><head><title>Ingo Kl&ouml;cker - Materialbilder</title></head>\n");
zoom.document.write("<body bgcolor=\"black\" marginwidth=\"0\" marginheight=\"0\" leftmargin=\"0\" topmargin=\"0\">\n");
zoom.document.write("<a href=\"Javascript:self.close();\"><img src=\""+name+"\" border=\"0\"></a>\n");
zoom.document.write("</body></html>\n");
zoom.document.close(); }
