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

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

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

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

function notify_pop(id)
{
	popup = window.open("/popup/pop_notify.php?id="+id+"&email="+document.notifybox.email.value, "notify" + id, "height=400,width=450,scrollbars=no,resizable=no");
	popup.focus();
}
