<!--
    function viewNoticePage(no,id) {
        var url = baseDir + 'dboard.php';
        document.PageForm.id.value   = id    ;
        document.PageForm.exec.value = 'view';
        document.PageForm.no.value   = no    ;
        document.PageForm.action     = url   ;
        document.PageForm.tot.value  = ''    ; // ÃÑ Á¶È¸¼ö Å¬¸®¾î
        document.PageForm.submit();
    }

    function viewNoticeOpen(baseDir, id, width, height, no ) {
        var url = baseDir + 'dboard.php?id=' + id + '&npop=Y&exec=view&no=' + no;
//      alert (url);
        var npop = window.open(url,'notice_pop','toolbar=no,menubar=no,resizable=no,scrollbars=yes,top=0,left=0,width=' + width + ',height=' + height );
        npop.focus();
    }
//-->