<!--
  function delProc(){
    if (confirm("»èÁ¦ÇÏ½Ã°Ú½À´Ï±î?")){
      document.myform.action="notice_delok.asp";
      document.myform.submit(); 
    }
  }

  function CheckStr(strOriginal, strFind, strChange){
    var position, strOri_Length;
    position = strOriginal.indexOf(strFind); 
    while (position != -1){
      strOriginal = strOriginal.replace(strFind, strChange);
      position = strOriginal.indexOf(strFind);
    }
    strOri_Length = strOriginal.length;
    return strOri_Length;
  }

  function printPage(id){
    var str;
    str="'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,";
    str=str+"width=650,height=650',top=30,left=250";
    window.open("print.asp?idx="+id,'remote',str);
  }
  
  function download(fn,fs){
    document.downloadform.filename.value = fn;
    document.downloadform.seq.value = fs;
    document.downloadform.action = "notice_download.asp";
    document.downloadform.submit();
  }      
     
//-->

