function gallery(file,x,y) {
rnd=Math.round(Math.random()*10000);
xx=Math.round(x)+20; yy=Math.round(y)+20;
var zoom=window.open("","win"+rnd,"width="+xx+",height="+yy+",scrollbars=no,menubar=no,status=no,toolbar=no,directories=no");
zoom.document.open();
zoom.document.write("<html><head>\n");
zoom.document.write("<meta http-equiv=\"content-type\" content=\"text/html;charset=iso-8859-1\">\n");
zoom.document.write("<meta http-equiv=\"Expires\" content=\"TUE, 01 Jan 1980 1:00:00 GMT\">\n");
zoom.document.write("<meta http-equiv=\"Pragma\" content=\"no-cache\">\n");
zoom.document.write("<title>Karin Schubert</title>\n");
zoom.document.write("<link href=\"styles.css\" rel=\"stylesheet\" media=\"screen\" type=\"text/css\">\n");
zoom.document.write("</head>\n");
zoom.document.write("<body bgcolor=\"#a6303f\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">\n");
zoom.document.write("<table width=\"100%\" height=\"100%\"><tr><td align=\"center\" valign=\"center\">\n");
zoom.document.write("<a href=\"Javascript:self.close()\"><img src=\""+file+"\" alt=\"Karin Schubert\" border=\"0\"></a><br>\n");
zoom.document.write("</td></tr></table>\n");
zoom.document.write("</body></html>\n");
zoom.document.close(); }
