function popup (img,sx,sy)
{
   var winl = (screen.width-sx)/2;
   var wint = (screen.height-sy)/2;

   image = "<a href='javascript:self.close()'><img src='"+img+"' border='0' alt=''></a>";
   popupwin=window.open("","photo","toolbar=no,location=no,directories=no,status=no,menubar=no,top="+wint+",left="+winl+",width="+sx+",height="+sy+"");
   popupwin.document.write("<HTML><HEAD><TITLE>Bild</TITLE></HEAD><BODY leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 BGCOLOR=#FFFFFF><CENTER>" + image + "</CENTER></BODY></HTML>");
   popupwin.document.close();
}