function popup (img,sx,sy,pagetitle,host) 
{
    var winl = (screen.width-sx)/2;
    var wint = (screen.height-sy)/2;

    image = '<a href="javascript:self.close()"><img src="'+img+'" border="0" alt="'+pagetitle+'" title="Click=Fenster schließen" /></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>' + pagetitle +'</title><base href="' + host + '"></head>');
    popupwin.document.write('<body bgcolor="#FFFFFF"><div align="center">' + image + '</div></body></html>');
    popupwin.document.close();
}


