function popup(name,x,y) {
rnd=Math.round(Math.random()*10000);
var zoom=window.open("","win"+rnd,"width="+x+",height="+y+",scrollbars=no,menubar=no,status=no,toolbar=no,directories=no");
zoom.document.open();
zoom.document.write("<html><head><title>Wohnlicht</title></head>\n");
zoom.document.write("<body bgcolor=\"#323232\" 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(); }
