$(function() {
    UciSharePopup.init();
})
var UciSharePopup = {
    /**
     * UCI 총괄에서 제공 받은 코드를 입력 ( 필수 ) 
     */
    shareProvideCode : '03',
    /**
     * UCI 공유기능 이벤트 초기화
     */
    init : function() {
        $('body').on('click', '.btnShare', UciSharePopup.openUciSharePopup);
    },
    
    /**
     * UCI 공유 팝업 열기
     */
    openUciSharePopup : function() {
        var $this = $(this);
        var uciCd = $this.data('ucicd');
        if(uciCd === undefined || uciCd == '') {
            alert('잘못 된 요청입니다.');
            return false;
        }

        var width = 500;
        var height = 455;
        var left = (screen.width) ? (screen.width - width) / 2 : 0;
        var top = (screen.height) ? (screen.height - height) / 2 : 0;
        
        

        // 실URL 오픈 후 변경 필요 
        var url = 'http://national.uci.or.kr/share/uci_share.do?uciCd=' + uciCd.replace(/\+/g,'%2B') + '&shareProvideCode=' + UciSharePopup.shareProvideCode;
        //var url = 'http://test.national.uci.or.kr/share/uci_share.do?uciCd=' + uciCd.replace(/\+/g,'%2B') + '&shareProvideCode=' + UciSharePopup.shareProvideCode;
        
        
        window.open(url, 'UCI_SHARE_POPUP', 'width=' + width + ', height=' + height + ', top=' + top + ',left=' + left + ',scrollbars=no, resizable=no');
    }
}