function del(href) {
  if(confirm("정말 삭제하시겠습니까?")) {
    document.location.href = href;
  }
}

 function popupzip(frm_name, frm_zip1, frm_zip2, frm_addr, relative_dir) {
      window.open(relative_dir+'/zip.php?frm_name='+frm_name+'&frm_zip1='+frm_zip1+'&frm_zip2='+frm_zip2+'&frm_addr='+frm_addr, 'winzip', 'scrollbars=yes,width=470,height=200,top=0,left='+(screen.width-482));
    }

function largeimage(it_id,width,height,type) {
		var top = 10;
        var left = 10;
        url = "largeimage.php?it_id=" + it_id +"&type="+type;
        width = width + 18;
        height = height + 5;
        opt = 'scrollbars=yes,width='+width+',height='+height+',top='+top+',left='+left;
      window.open(url, "largeimage", opt);
    }
 