﻿function copyOpen(contIdx, CurrentUrl, menuCd,schCategory, mode) {
var linkUrl = "/Library/popContentsCopy.aspx?contIdx=" + contIdx + "&CurrentUrl=" + CurrentUrl + "&menuCd=" + menuCd + "&schCategory=" + schCategory + "&mode=" + mode;

var copy_popup = window.open(linkUrl, "copy_popup", "top=70,left=70,width=350,height=400");
    copy_popup.focus();
}


function prePrint(contIdx) {
    var print_popup = window.open('/Library/popPrint.aspx?contIdx=' + contIdx, 'printPop', 'width=740,height=700,top=100,left=100,scrollbars=yes');
    print_popup.focus();
}   
