function gallery(file,x,y) {
rnd=Math.round(Math.random()*10000);
xx=Math.round(x)+16; yy=Math.round(y)+16;
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>loro loco &middot; acoustic pop</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 class=\"bodyclass\" bgcolor=\"#ff9207\" 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=\"www.loro-loco.de\" border=\"0\"></a><br>\n");
zoom.document.write("</td></tr></table>\n");
zoom.document.write("</body></html>\n");
zoom.document.close(); }