// *** 페이지 페이징 함수 ***
function goHref(paramDepth) {
  var depth1;
  var depth2;
  var c_no;
  
  try {
    c_no = paramDepth;
//alert(c_no);
    if(c_no == "000000") {
      location.href = "/";
    } else if(c_no == "001001") {
      location.href = "/sub/sub0101.html";
    } else if(c_no == "002001") {
      location.href = "/sub/sub0201.html";
	  } else if(c_no == "003001") {
      location.href = "/sub/sub0301.html";
    } else if(c_no == "004001") {
      location.href = "/sub/sub0401.html";
    } else if(c_no == "005001") {
      location.href = "/sub/sub0501.html";
    } else if(c_no == "005002") {
      location.href = "/sub/sub0502.html";
    } else if(c_no == "005003") {
      location.href = "/sub/sub0503.html";
    } else if(c_no == "005004") {
      location.href = "/sub/sub0504.html";
    } else if(c_no == "006001") {
      location.href = "/sub/sub0801.html";
    } else if(c_no == "006002") {
      location.href = "/sub/sub0802.html";
    } else if(c_no == "006003") {
      location.href = "/sub/sub0803.html";
    } else if(c_no == "006004") {
      location.href = "/sub/sub0804.html";
    } else if(c_no == "006005") {
      location.href = "/sub/sub0805.html";
    } else if(c_no == "007001") {
      location.href = "/board/list.php?code=notice_jp";
	} else if(c_no == "007002") {
      location.href = "/board/list.php?code=update_jp";
    } else if(c_no == "008001") {
      location.href = "/sub/sub0901.html";
	}
  }catch(E) {}
}