function UserStoryList(page,user_id,type)
  {      

	 CallAjax("/inc/post.user.ajax.php?page=" + page+ "&user_id="+user_id+"&type="+type,"DisplayUserStoryList(responseText)");

  }
function DisplayUserStoryList(text)
  {
	 var target = document.getElementById("post_user_story_list");
	 target.innerHTML = text;
   }
function PostStoryList(page,user_id,type)
  {      

	 CallAjax("/inc/post.main.ajax.php?page=" + page+ "&user_id="+user_id+"&type="+type,"DisplayStoryList(responseText)");

  }
function DisplayStoryList(text)
  {
	 var target = document.getElementById("post_story_list");
	 target.innerHTML = text;
   }

function PostReplyList(page,profile_id)
  {      

	 CallAjax("/inc/post.reply.ajax.php?page=" + page+ "&profile_id="+profile_id,"DisplayReplyList(responseText)");

  }
function DisplayReplyList(text)
  {
	 var target = document.getElementById("post_reply_list");
	 target.innerHTML = text;
   }
					   
function WriteStory() {
	var txt_story = document.getElementById("txt_story");
    
//	if(trim(txt_story.value) == "" || writable==0) {
	if(trim(txt_story.value) == "") {
		alert("내용을 입력하세요.");
		txt_story.focus();
		return false;
	}
	//if(funcCheck==0){alert("글자수가 확인이 되지 않았습니다.");return false;}
	//location.href = "/user/story.proc.php?type=1&icon_type="+storyIcon+"&content=" + encodeURIComponent(txt_story.value);
	document.posting.icon_type.value=storyIcon;
	document.posting.content.value= txt_story.value;

	if(/@[^\s|&]+(\s|$)/.test(txt_story.value)){
		document.posting.action="/user/quick.post.proc.php?type=1&from=2"; 
		document.posting.submit();
	}else{
		document.posting.action="/user/story.proc.php"; 
		document.posting.submit();
	}
}

function DeleteStory(post_id, type,page)
{
	if (confirm("말풍선을 삭제하시겠습니까?"))
		document.location = "/user/story.proc.php?post_id=" + post_id + "&cd=3&type="+type+"&page="+page;
}

function EditStory(post_id,type)
{
	if(type == 1)	{ //있는 코멘트 수정 시
		var content = document.getElementById("span_story_note_" + post_id).innerHTML.replace(/<br>/gi, "\n");
		document.getElementById("div_story_content_" + post_id).style.display = "block";
		document.getElementById("story_note_edit_" + post_id).note.value = stripHTMLtag(content);
		document.getElementById("div_story_note_edit_" + post_id).style.display = "block";
		document.getElementById("div_story_note_" + post_id).style.display = "none";
		//document.getElementById("div_story_note_" + post_id).innerHTML = document.getElementById("div_story_note_edit_" + post_id).innerHTML;
	}else if(type==2){ // 없는 코멘트 수정 시
		document.getElementById("div_story_content_" + post_id).style.display = "block";
		document.getElementById("div_story_note_edit_" + post_id).style.display = "block";
	}else{  //본문 수정 시
		var content = document.getElementById("span_story_content_" + post_id).innerHTML.replace(/<br>/gi, "\n");
		document.getElementById("div_story_content_" + post_id).style.display = "none";
		document.getElementById("div_story_edit_" + post_id).style.display = "block";
		document.getElementById("story_edit_" + post_id).content.value = stripHTMLtag(content);
	}
	
	//	document.getElementById("story_edit_" + post_id).content.value = document.getElementById("span_story_content_" + post_id).innerHTML.replace(/<br>/gi, "\n");
}

function EditStoryCancel(post_id, type)
{
	if(type==1){
//		document.getElementById("div_story_note_" + post_id).innerHTML = document.getElementById("story_note_edit_" + post_id).user_note.value;
//		document.getElementById("div_story_icon_list_"+post_id).style.display = "none";
		document.getElementById("div_story_note_edit_" + post_id).style.display = "none";
		document.getElementById("div_story_note_" + post_id).style.display = "block";
//		document.getElementById("div_story_content_" + post_id).style.display = "block";
	}else if(type==2){
		document.getElementById("div_story_note_edit_" + post_id).style.display = "none";
	}else{
		document.getElementById("div_story_icon_list_"+post_id).style.display = "none";
		document.getElementById("div_story_edit_" + post_id).style.display = "none";
		document.getElementById("div_story_content_" + post_id).style.display = "block";
	}
}

function SendEditStory(post_id, type)
{
	if(type==1){
			document.getElementById("story_note_edit_"  + post_id).submit();
	}else{
		if (document.getElementById("story_edit_"  + post_id).content.value == "")
		{
			alert("글을 입력해주세요.");
			document.getElementById("story_edit_"  + post_id).content.focus();
			return;
		}
		document.getElementById("story_edit_"  + post_id).submit();
	}
}
function GetStoryComment(post_id, user_id,  story_type, type) {
	var div_story_comment = document.getElementById("div_story_comment_"+post_id);
	if(div_story_comment.style.display == "none") {
		div_story_comment.style.display = "block";
		CallAjax("/user/story.comment.ajax.php?cd=0&post_id=" + post_id + "&story_type=" + story_type + "&user_id="+user_id+ "&type="+type, "DisplayStoryComment(" + post_id + ", responseText)");
	} else {
		div_story_comment.style.display = "none";
	}
}

function DisplayStoryComment(post_id, responseText) {
	var div_story_comment = document.getElementById("div_story_comment_"+post_id);
	div_story_comment.innerHTML = responseText;
	var span_count_comment = document.getElementById("span_count_comment_"+post_id);
	//span_count_comment.innerHTML = "("+document.getElementById("story_comment_count_new_"+post_id).value+")";
	//alert(responseText);
}

function FocusElement(post_id) {
	var txt_comment = document.getElementById("comment_"+post_id);
	if(txt_comment) {
		txt_comment.focus();
	}
	if(timeout_id) {
		self.clearTimeout(timeout_id);
	}
}

function WriteStoryComment(post_id, user_id, story_type, type) {
	var div_story_comment = document.getElementById("comment_"+post_id);
    var div_story_create = document.getElementById("tostory_"+post_id);
    var tostory = 0;

	if(trim(div_story_comment.value) == "") {
		alert("댓글을 입력하십시오.");
		return;
	}

	if(div_story_create.checked)	 	tostory=1;
   // alert(post_id);alert(user_id);alert(story_type);alert(type);alert(encodeURIComponent(div_story_comment.value));
	CallAjax("/user/story.comment.ajax.php?cd=1&post_id=" + post_id + "&story_type=" + story_type + "&user_id="+user_id+"&type="+type+"&comment=" + encodeURIComponent(div_story_comment.value)  + "&tostory=" + tostory, "DisplayStoryComment(" + post_id + ", responseText)");
}

function DeleteStoryComment(comment_id, post_id, user_id, type) {
	if(confirm("삭제하시겠습니까?")) {
		CallAjax("/user/story.comment.ajax.php?cd=3&comment_id="+comment_id+"&post_id=" + post_id+"&user_id="+user_id+"&type="+type, "DisplayStoryComment(" + post_id + ", responseText)");
	}
}

function DeleteProfileLog(profile_id, user_id) {
	if(confirm("이 행적을 지우시겠습니까?")) {
		location.href = "/user/profilelog.delete.proc.php?user_id="+user_id+"&profile_id=" + profile_id;
	}
}

function EditUserTitle(type)
{ 
	try
	{
		if (type == 1) 
		{
			document.getElementById("span_user_title").style.display = "none";
			document.getElementById("span_user_title_edit").style.display = "inline";
			document.getElementById("txt_user_title").value = document.getElementById("span_user_title_box").innerHTML;
		}
		else if (type == 2)
		{
			if (trim(document.getElementById("txt_user_title").value) == "")
			{
				alert("타이틀을 입력해 주십시오.");
				return false;
			}
			CallAjax("/user/edit.title.ajax.php?user_title="+encodeURI(trim(document.getElementById("txt_user_title").value)), "SetUserTitle(responseText)");
		}
	}
	catch (e)
	{
		return false;
	}
	return false;
}

function SetUserTitle(responseText)
{
	if (trim(responseText) != "")
	{
		document.getElementById("span_user_title_box").innerHTML = responseText;
	}
	document.getElementById("span_user_title_edit").style.display = "none";
	document.getElementById("span_user_title").style.display = "inline";
}

function SetOpenType(post_id, writer_id, user_id, page) {
    if (confirm("한 번 비밀로 설정한 글은 다시 되돌릴 수 없습니다.\n이 글을 비밀로 수정 하시겠습니까?"))
	location.href = "/user/guestbook.opentype.proc.php?post_id=" + post_id + "&writer_id="+writer_id+"&user_id="+user_id+"&page="+page;
}

function DeletePost(post_id, writer_id, user_id, page)
{
	if (confirm("삭제하시겠습니까?"))
		document.location = "/user/guestbook.delete.proc.php?post_id=" + post_id + "&writer_id="+writer_id+"&user_id="+user_id+"&page="+page;
}

function CheckGuestBookSubmit(f)
{
	if (!f.login_id || f.login_id < 1){
		LoginRight(event);
		return false;
	}
	
	if (!trim(f.content.value))
	{
		alert('내용을 입력해 주십시오.');
		f.content.focus();
		return false;
	}

	return confirm("작성하신 글을 등록하시겠습니까?");
}


function SetProfileType(obj)
{
	if (obj.selectedIndex == 0)
	{
		document.posting.profile_id.value = 0;
		document.posting.profile_name.value = "";
		document.posting.town_id.value = 0;
		document.posting.town_name.value = "";
	}
	else
	{
		if (obj.options[obj.selectedIndex].parentNode.id == "optgr_store")
		{
			document.posting.profile_id.value = obj.options[obj.selectedIndex].value;
			document.posting.profile_name.value = obj.options[obj.selectedIndex].innerHTML;
			document.posting.town_id.value = 0;
			document.posting.town_name.value = "";
		}
		else if (obj.options[obj.selectedIndex].parentNode.id == "optgr_town")
		{
			document.posting.profile_id.value = 0;
			document.posting.profile_name.value = "";
			document.posting.town_id.value = obj.options[obj.selectedIndex].value;
			document.posting.town_name.value = obj.options[obj.selectedIndex].innerHTML;			
		}
	}
}
function PostDetail()
{
	var div_post_detail = document.getElementById("div_post_detail");
	if (div_post_detail.style.display == "none")
		div_post_detail.style.display = "block";
	else
		div_post_detail.style.display = "none";
}
function DisplayPhotoComment(post_id, responseText)
{
	document.getElementById("div_photo_comment_" + post_id).innerHTML = responseText;
	document.getElementById("span_count_comment_" + post_id).innerHTML = document.getElementById("photo_comment_count_new_" + post_id).value;
}
function GetPhotoComment(post_id, user_id)
{ 
	var div_photo_comment = document.getElementById("div_photo_comment_" + post_id);
	if (div_photo_comment.style.display == "none")
	{
		div_photo_comment.style.display = "block";
		CallAjax("/user/photo.comment.ajax.php?main=1&type=0&post_id=" + post_id + "&user_id=" + user_id, "DisplayPhotoComment(" + post_id + ", responseText)");
	}
	else
	{
		div_photo_comment.innerHTML = "";
		div_photo_comment.style.display = "none";
	}
}
function WritePhotoComment(post_id, user_id)
{
	var div_photo_comment = document.getElementById("comment_"+post_id);
	if (trim(div_photo_comment.value) == "")
	{
		alert("댓글을 입력하십시오.");
		return;
	}
	CallAjax("/user/photo.comment.ajax.php?main=1&type=1&post_id=" + post_id + "&user_id=" + user_id + "&comment=" + encodeURIComponent(div_photo_comment.value), "DisplayPhotoComment(" + post_id + ", responseText)");
}

function DeletePhotoComment(comment_id, post_id, user_id)
{
	if (confirm("삭제하시겠습니까?"))
		CallAjax("/user/photo.comment.ajax.php?main=1&type=3&comment_id=" + comment_id + "&post_id=" + post_id + "&user_id=" + user_id, "DisplayPhotoComment(" + post_id + ", responseText)");
}

function ChangePhotoComment(comment_id)
{
	document.getElementById("div_photo_comment_content_"+comment_id).style.display = "none";
	document.getElementById("div_photo_comment_edit_"+comment_id).style.display = "block";
	document.getElementById("txt_photo_comment_edit_"+comment_id).value = document.getElementById("span_photo_comment_content_"+comment_id).innerHTML;
}

function CancelEditPhotoComment(comment_id)
{
	document.getElementById("div_photo_comment_edit_"+comment_id).style.display = "none";
	document.getElementById("div_photo_comment_content_"+comment_id).style.display = "block";
}

function EditPhotoComment(comment_id, post_id, user_id)
{
	var txt_photo_comment_edit = document.getElementById("txt_photo_comment_edit_" + comment_id);
	if (trim(txt_photo_comment_edit.value) == "")
	{
		alert("댓글을 입력하십시오.");
		return;
	}
	CallAjax("/user/photo.comment.ajax.php?main=1&type=2&comment_id=" + comment_id + "&post_id=" + post_id + "&user_id=" + user_id + "&comment=" + encodeURIComponent(txt_photo_comment_edit.value), "DisplayPhotoComment(" + post_id + ", responseText)");
}

function EditGuestbookPost(post_id)
{
	document.getElementById("div_post_" + post_id).style.display = "none";
	document.getElementById("div_post_edit_" + post_id).style.display = "block";
}

function CancelEditGuestbook(post_id)
{
	document.getElementById("div_post_edit_" + post_id).style.display = "none";
	document.getElementById("div_post_" + post_id).style.display = "block";
	document.getElementById("post_edit_" + post_id).content.value = document.getElementById("post_content_" + post_id).innerHTML.replace(/<br>/gi, "\n");
	
}

function SendEditGuestbook(post_id)
{
	if (trim(document.getElementById("post_edit_"  + post_id).content.value) == "")
	{
		alert("글을 입력해주세요.");
		return;
	}
	document.getElementById("post_edit_"  + post_id).submit();
}


function SelectBookmark(post_id)
{
	if (post_id == 0)
	{
		var form = document.posting;
		var select = document.getElementById("bookmark");
	}
	else
	{
		var form = document.getElementById("post_edit_" + post_id);
		var select = document.getElementById("bookmark_" + post_id);
	}
	
	var option = select.options[select.selectedIndex];
	if (option.parentNode.label == "촌")
	{
		form.profile_id.value = "0";
		form.profile_name.value = "";
		form.town_id.value = option.value;
		form.town_name.value = option.text;

	}
	else if (option.parentNode.label == "장소")
	{
		form.profile_id.value = option.value;
		form.profile_name.value = option.text;
		form.town_id.value = "0";
		form.town_name.value = "";
	}
	else
	{
		form.profile_id.value = "0";
		form.profile_name.value = "";
		form.town_id.value = "0";
		form.town_name.value = "";
	}
}
var a="";
function checka(obj,result) {
 
	if (a != obj.value) {
		updateChar(obj,result);
		
		a = obj.value;
	} else {		
	}
	
	setTimeout(function(){checka(obj,result);}, 10); 
}

function updateChar(obj,result) {
    document.getElementById(result).innerHTML = calculate_msglen(obj);
}

function calculate_msglen(obj) {
     var nbytes = 0;
     var message = obj.value;    

     for (i=0; i<message.length; i++) {
          var ch = message.charAt(i);
       
          if(escape(ch).length > 4) {
               nbytes += 1; 
          } else if (ch == '\n') {
               if (message.charAt(i-1) != '\r') {
                    nbytes += 1;
               }
          } else if (ch == '<' || ch == '>') {
               nbytes += 1;
          } else {
                nbytes += 1;
		  }
     }
  
  if(nbytes>150)
	{
	  alert("150자를 넘을수 없습니다.");
	
		obj.value=obj.value.substring(0,150);
		obj.focus();
	}
     return nbytes;
}
var writable = 0;

var x,y;

function handlerMM(e){
      x = (document.layers) ? e.pageX : document.documentElement.scrollLeft+event.clientX;
      y = (document.layers) ? e.pageY : document.documentElement.scrollTop+event.clientY;
}
document.onmousemove=handlerMM;

//////////////////////////left.user.inc.php에서 가져온것...///////////////

function ShowNextFriend(current_friend_index)
{
	CallAjax("/user/friend.list.ajax.php?user_id="+default_user_id+"&count_friend="+default_count_friend+"&friend_limit_start="+(current_friend_index+7), "SetFriendList(responseText)");
}

function ShowPrevFriend(current_friend_index) 
{
	CallAjax("/user/friend.list.ajax.php?user_id="+default_user_id+"&count_friend="+default_count_friend+"&friend_limit_start="+(current_friend_index-7), "SetFriendList(responseText)");
}

function SetFriendList(responseText)
{
	var div_friend = document.getElementById("div_friend");
	div_friend.innerHTML = responseText;
}

function PageFriend(user_id, count_friend, page)
{   
	CallAjax("/user/friend.list.ajax.php?user_id=" + user_id + "&user_name="+encodeURI(default_name)+"&count_friend=" + count_friend + "&page=" + page, "DisplayFriend(responseText)");
}
			
function DisplayFriend(text)
{
				
	var target = document.getElementById("div_friend");
	target.innerHTML = text;
}
/////////////////////////////////////////////////////////edit.php//////////////////////////////////////////





function CheckSubmit(form)
{  
	var town_id = form.sel_town.options[form.sel_town.selectedIndex].value;
	var interest = form.sel_interest.options[form.sel_interest.selectedIndex].value;
	var town_name= form.sel_town.options[form.sel_town.selectedIndex].text;

	if(document.edit_input.name.value == ""){
		alert("이름을 입력해 주세요.");
		return false;
	}
	else if(!name_dup_check && document.edit_input.user_name.value !=  document.edit_input.name.value
		|| name_dup_check && document.edit_input.name.value !=  document.edit_input.user_name_clone.value) {
		alert("이름 중복확인을 해주세요.");
		return false;
	}
	if(!domain_dup_check && document.edit_input.user_domain.value !=  document.edit_input.domain.value  && document.edit_input.user_domain.value != "" || 
		domain_dup_check && document.edit_input.user_domain.value != document.edit_input.user_domain_clone.value) {
		alert("파이프 주소 중복확인을 해주세요.");
		return false;
	}else if(form.user_domain.value.length > 0 && form.user_domain.value.length <= 3) {
		alert("파이프 주소는 3글자 이상 입력해주셔야 합니다.");
		return false;
	}else if(town_id<1) {
		alert("주활동지역을 선택해 주세요.");
		return false;
	}else{	//이름, 도메인 && 주활동지역 OK  
	
			 form.town_id.value=town_id;
			 form.interest.value=interest;
			 form.town_name.value =town_name;
			 return true;
	}
}

function CheckDomainDup()
{
	if (trim(document.edit_input.user_domain.value) == "")
	{
		alert("도메인을 입력해주십시오.");
		document.edit_input.user_domain.value = "<?= $user_domain ?>";
		return;
	}
	
	var str_callback = "AlertDupDom(responseText,'domain_msg', 'domain_dup_check', '이미 사용중인 주소입니다.', '사용하실 수 있는 주소입니다.', '올바른 주소 형식이 아닙니다.')";
	CallAjax("/user/check.domain.ajax.php?user_domain="+document.edit_input.user_domain.value, str_callback);

	document.edit_input.user_domain_clone.value = document.edit_input.user_domain.value;
}

function CheckNameDup()
{
	if (trim(document.edit_input.name.value) == "")
	{
		alert("이름을 입력해주십시오.");
		document.edit_input.name.value = "<?= $user_name ?>";
		return;
	}
	for(i=0;i<document.edit_input.name.value.length;i++)
	{
		 user_name =document.edit_input.name.value.charAt(i);
         var str = /[^0-9a-zA-Z가-힣ぁ-ん一-龥]/;
		 var reg = /[ㄱ-ㅎ]/gi
         name_code=user_name.charCodeAt();
		 if(document.edit_input.name.value.charAt(i)==" ")
		{
			
		      alert ("이름에 공백을 사용할 수 없습니다.");
            //document.join_input.user_name.value="";
			var str_callback = "AlertDup(responseText,'name_msg', 'name_dup_check', '이미 사용중인 이름입니다.', '사용하실 수 있는 이름입니다.', '올바른 이름 형식이 아닙니다.')";

	        CallAjax("/user/check.name.ajax.php?user_name="+encodeURI(document.edit_input.name.value), str_callback);
			
			return;
		}
		if(reg.test(user_name))
		{
		  alert("올바른 이름 형식이 아닙니다.");
          var str_callback = "AlertDup(responseText,'name_msg', 'name_dup_check', '이미 사용중인 이름입니다.', '사용하실 수 있는 이름입니다.', '올바른 이름 형식이 아닙니다.')";
	      CallAjax("/user/check.name.ajax.php?user_name="+encodeURI(document.edit_input.name.value), str_callback);
		  return;

		}
        if(str.test(user_name)) 
		{
          alert("특수문자 '" +user_name+ "' 를 사용할 수 없습니다");
          
		  var str_callback = "AlertDup(responseText,'name_msg', 'name_dup_check', '이미 사용중인 이름입니다.', '사용하실 수 있는 이름입니다.', '올바른 이름 형식이 아닙니다.')";

	      CallAjax("/user/check.name.ajax.php?user_name="+encodeURI(document.edit_input.name.value), str_callback);
		  return;
		}
		
	}
   
	var str_callback = "AlertDup(responseText,'name_msg', 'name_dup_check', '이미 사용중인 이름입니다.', '사용하실 수 있는 이름입니다.', '올바른 이름 형식이 아닙니다.')";
	CallAjax("/user/check.name.ajax.php?user_name="+encodeURIComponent(document.edit_input.name.value), str_callback);
	
	document.edit_input.user_name_clone.value = document.edit_input.name.value;
	
}

function ChangePassword()
{
	if (trim(document.getElementById("user_passwd_old").value) == "")
	{
		alert("기존 비밀번호를 입력해주십시오.");
		return;
	}
	
	if (document.getElementById("user_passwd").value.length < 6)
	{
		alert("새 비밀번호를 6자 이상 20자 이하로 입력해주십시오.");
		return;
	}
	if (document.getElementById("user_passwd").value != document.getElementById("user_passwd_confirm").value)
	{
		alert("새 비밀번호가 일치하지않습니다");
		return;

	}
	
	document.getElementById("pwd").submit();
}
function CheckEmailDup()
{
	var str_callback_email = "AlertDup(responseText,'email_msg', 'email_dup_check', '이미 사용중인 이메일입니다.', '사용하실 수 있는 이메일입니다.', '올바른 이메일 형식이 아닙니다.')";
	CallAjax("/user/check.email.ajax.php?user_email="+encodeURIComponent(document.edit_input_email.user_email.value), str_callback_email);
}
function CheckSubmit_email2(e)
{
	if(!document.edit_input_email.user_email.value) {
		alert("이메일주소를 입력해주세요.");
		return false;
	}else{
		CallAjax("/user/edit.proc.email.ajax.php?user_email="+encodeURIComponent(document.edit_input_email.user_email.value)+"&user_id="+document.edit_input_email.user_id.value+"&user_name="+encodeURIComponent(document.edit_input_email.user_name.value), "Submit_email_ret( responseText)");

//	ChangeUserEmail(e, document.edit_input_email.user_id.value, encodeURIComponent(document.edit_input_email.user_name.value), encodeURIComponent(document.edit_input_email.user_email.value));
	//return true;
	}
}



function CheckSubmitInter(form)
{
	var age = form.select_age.options[form.select_age.selectedIndex].value;
    var gender = form.select_gender.options[form.select_gender.selectedIndex].value;
	var town = form.select_town.options[form.select_town.selectedIndex].value;
	var interest = form.select_interest.options[form.select_interest.selectedIndex].value;
	
	form.age.value=age;
	form.gender.value=gender;
	form.town.value=town;
	form.interest.value=interest;
	form.submit();
}
function Submit_email_ret(ret)
{
	if(ret == 0)
	{
		location.replace("/user/wait.php?type=email");
		return false;
	}else if (ret == 1)
	{
		alert("정상적인 이메일형식이 아닙니다.");
		return false;
	}else if (ret == 2)
	{
		alert("이미 사용 중인 이메일입니다.");
		return false;
	}else if (ret == 3)
	{
		alert("랜덤키 생성에 실패하였습니다.");
		return false;
	}else if (ret == 4)
	{
		alert("이메일 발송을 실패하였습니다.");
		return false;
	}else
	{
		alert("이메일 변경처리가 실패하였습니다.");
		return false;
	}
	return false;

	if(ret == "NODUP")
	{
		ChangeUserEmail(e, document.edit_input_email.user_id.value, encodeURIComponent(document.edit_input_email.user_name.value), encodeURIComponent(document.edit_input_email.user_email.value));
	}else
	{
		alert("이미 사용 중인 이메일입니다.");
		return false;
	}
}
