function popup_config()
{
        popup = window.open("/browserconfig.php", "config", "height=400,width=450,scrollbars=yes,resizable=yes");
        popup.focus();
}


function pop_help(topicid)
{
        popup = window.open("/help.php?id=" + topicid, "help", "height=300,width=250,scrollbars=yes,resizable=yes");
        popup.focus();
}

function clipboard_add(imgid)
{
        popup = window.open("http://fotopic.net/clip/clipboard.php?id=" + imgid + "&action=add", "imgadd", "height=400,width=320,scrollbars=yes,resizable=yes");
        popup.focus();
}

function comment_add(imgid)
{
        popup = window.open("/comment.php?id=" + imgid, "commentadd", "height=400,width=450,scrollbars=yes,resizable=yes");
        popup.focus();
}

function photo_info(imgid)
{
        popup = window.open("/photo_info.php?id=" + imgid, "info", "height=400,width=500,scrollbars=yes,resizable=yes");
        popup.focus();
}

