img_c1on = new Image();
img_c1on.src="../img/news_check1on.gif";
img_c1off = new Image();
img_c1off.src="../img/news_check1off.gif";

img_c2on = new Image();
img_c2on.src="../img/news_check2on.gif";
img_c2off = new Image();
img_c2off.src="../img/news_check2off.gif";

function type_check(idx)
{
	if(idx==1)
	{
		document.images['con1'].src=img_c1on.src; 
		document.images['con2'].src=img_c2off.src; 
	}
	else if(idx==2)
	{
		document.images['con2'].src=img_c2on.src; 
		document.images['con1'].src=img_c1off.src; 
	}
	document.newsform.checkon.value = idx;
}

  function sendDel(val)
  {
      ret = confirm("Á¤¸»·Î »èÁ¦ÇÏ½Ã°Ú½À´Ï±î?");
      if(ret == true)
      {
          location.href=val;
          return;
      }
      else
      {
          return;
      }
  }