﻿/* 
 * 빙그레 공통 자바스크립트 함수
 * 
 */
$(function() {

    /* A function to execute after the DOM is ready. */


});



//프린트
function print_info(layerid) {

    if (layerid == null) {
        document.getElementById("hidPrint").value = document.getElementById("contents").innerHTML;
    }
    else {
        document.getElementById("hidPrint").value = document.getElementById(layerid).innerHTML;
    }

    window.open("/common/cmn_print.aspx", "print_open", "width=800,height=700,top=0,left=0,noresizable,toolbar=no,status=no,scrollbars=yes,directory=no");
}
