function showPic(id,w,h)
        {
        if(!w) w=640;
        if(!h) h=480;

        url = "/showpic.pbml?id=" + id;

        window.open(url, "Picture","width=" + w + ",height=" + h + ",status=no,resizeable=no");
        }

function showStaticPic(img,w,h)
        {
        if(!w) w=640;
        if(!h) h=480;

        url = "/showpic.php?img=" + img;

        window.open(url, "Picture","width=" + w + ",height=" + h + ",status=no,resizeable=no");
        }
