function popup(imgsrc)
{
        var showimg = window.open("", "foto", "toolbar=no, location=no, menubar=no, scrollbars=no, status=no, top=10, left=10, width=100, height=100");
        showimg.focus();
        showimg.document.writeln("<html><head><title>Foto</title>");
        showimg.document.writeln("<script>function resize(){window.resizeTo(document.images[0].width, document.images[0].height + 50)}</sc"+"ript>");
        showimg.document.writeln("<script>function move(){window.moveTo(screen.width/2-(document.images[0].width/2), screen.height/2-(document.images[0].height/2))}</script>");
        showimg.document.writeln("</head><body style=\"margin: 0px; cursor: pointer; overflow: hidden\" onload=\"resize();move()\">");
        showimg.document.writeln("<img src=\"" + imgsrc + "\" onclick=\"window.close()\" title=\"Click to close this window.\">");
        showimg.document.writeln("</body></html>");
        showimg.document.close();

        return false;
}
