//¶óÀÌ¼±½º ÆË¾÷Ã¢ È£Ãâ ½ºÅ©¸³Æ®
function openCCPreview(form) {
    //popup('DcSuNsLicensePreview.jsp','CCPreview',650,600,1);
    //popup('http://creativecommons.org/licenses/by-nc-nd/2.0/kr/','CCPreview',650,600,1);

    if (!form) form = document.form;
		if(!checkLic()){
			return;
		}
    form.openLegalCodeYN.value = "N";
    popup('','CCPreview',650,600,'No');
    form.target = "CCPreview";
    form.method = "post";
	form.action = "../license/DcCcLicenseView.jsp";
	form.submit();
}

//legalCOde ÆË¾÷Ã¢ È£Ãâ ½ºÅ©¸³Æ®
function openLegalCode(form) {
    //popup('DcSuNsLegalCode.jsp','LegalCode',650,600,1);
    //popup('http://creativecommons.org/licenses/by-nc-nd/2.0/kr/legalcode','LegalCode',650,600,1);

    if (!form) form = document.form;

    form.openLegalCodeYN.value = "Y";
    popup('', 'LegalCode', 650, 600, 1);
    form.target = "LegalCode";
    form.method = "post";
	form.action = "../license/DcCcLicenseView.jsp";
	form.submit();
}

//¶óÀÌ¼±½º ¼öÁ¤ Å¬¸¯½Ã È£ÃâµÇ´Â ÆË¾÷ ½ºÅ©¸³Æ®
function openCCLicenseMod() {
    popup('../license/DcCcLicenseInput.jsp','CCLicenseMod','500','400');
}

//ÇØ´ç ¶óÀÌ¼±½º ÀÌ¹ÌÁö Å¬¸¯ ½Ã ÇØ´ç ¶óÀÌ¼±½º¿¡ ´ëÇÑ »ó¼¼Á¤º¸¸¦ º¸¿©ÁÖ´Â ÆË¾÷Ã¢À» È£ÃâÇÏ´Â ½ºÅ©¸³Æ®
function openLicenseHelp(elementId) {
    popup('../license/DcCcLicenseHelp.jsp?elementId='+elementId,'LicenseHelp','375','300');
}

// Creative Commons License ¾È³»ÆäÀÌÁö
function openCCLicense() {
    window.open('http://www.creativecommons.or.kr/info/about','CCLicense');
}




