
function regSlct(mc,cntnt_sn,loginYN){
	var slct_form = document.getElementById("regSlct");
	
	if(loginYN==0){
		// 로그인안되어있음.
		alert("페이지찜하기는 로그인하시고 사용할수 있습니다.");
		slct_form.action = "/login.do?mc=KO4515000000&pageNum=9&subNum=3";
		slct_form.appendChild(document.getElementById("sendFields"));
		slct_form.submit();
	}else{
		var httpRequest = new HttpRequest();
	  try {
	    httpRequest.sendRequest(false,"post","/4000_mypage/myfavorite_reg.do","mc="+mc+"&cntnt_sn="+cntnt_sn,
	      function(oj) {
	        var res = decodeURIComponent(oj.responseText);
	        if(res=="true") alert("해당 페이지를 찜하였습니다.");
	        else if(res=="false") alert("해당 페이지를 찜하는데 실패하였습니다.");
	        else if(res=="dupl") alert("이미 찜한 페이지 입니다.");
	        else alert(res);
	      }
	    );
	    httpRequest = null;
	  } catch(e) {
	    alert("\n"+e.mesage);
	    alert("해당 페이지를 찜하는데 실패하였습니다.");
	  }
	}
}