function popup(url, bildname) {
        posx = Math.round(100);
        posy = Math.round(100);
        popupw = window.open( bildname, "","top=" + posx + ",left=" + posy + ",width=150, height=150");
        doC=popupw.document;
        doC.open();
        doC.write('<html>');
        doC.write('<head>');
        doC.write('<title>|' + bildname + '|</title>');
        doC.write('</head>');
        doC.write('<body marginwidth="0" marginheight="0" topmargin="0" leftmargin="0" onload="resizeTo(document.pic.width+10, document.pic.height+25)">');
        doC.write("<img border=0 name='pic' src='" + url + "' onclick='self.close()'>");
        doC.write("</body></html>");
        doC.close();
        popupw.resizeTo(doC.pic.width,doC.pic.height+25)
        popupw.focus();
}

