if (typeof(SHOP_JS) == 'undefined') { // 한번만 실행
    var SHOP_JS = true;

    // 큰이미지 창
    function popup_large_image(it_id, img, width, height, cart_dir)
    {
        var top = 10;
        var left = 10;
        url = cart_dir+"/largeimage.php?it_id=" + it_id + "&img=" + img;
        width = width + 50;
        height = height + 100;
        opt = 'scrollbars=yes,width='+width+',height='+height+',top='+top+',left='+left;
        popup_window(url, "largeimage", opt);
    }
    // 로고이미지 창
    function popup_logo_image(img, width, height, logo_dir)
    {
        var top = 10;
        var left = 10;
        url = logo_dir+"/logoimage.php?img=" + img;
        width = width + 50;
        height = height + 100;
        opt = 'scrollbars=yes,width='+width+',height='+height+',top='+top+',left='+left;
        popup_window(url, "logoimage", opt);
    }
    // 그림이미지 창
    function popup_picture_image(picdir,img, width, height, logo_dir)
    {
        var top = 10;
        var left = 10;
        url = logo_dir+"/pictureimage.php?picdir=" + picdir + "&img=" + img;
        width = width + 200;
        height = height + 100;
        opt = 'scrollbars=yes,width='+width+',height='+height+',top='+top+',left='+left;
        popup_window(url, "pictureimage", opt);
    }
}

