function limitWord(sBuf) {
	// 문자열에 금칙어가 있다면 true 를 return...
	var stopContent = "";

		stopContent += "계좌|"
		stopContent += "대출|"
		stopContent += "매매|"
		stopContent += "강간|"
		stopContent += "개같은|"
		stopContent += "개년|"
		stopContent += "개뇬|"
		stopContent += "개새끼|"
		stopContent += "거시기|"
		stopContent += "고추|"
		stopContent += "과부촌|"
		stopContent += "근친|"
		stopContent += "꼬추|"
		stopContent += "끈팬티|"
		stopContent += "나체|"
		stopContent += "노브라|"
		stopContent += "노팬티|"
		stopContent += "딸딸이|"
		stopContent += "떡치기|"
		stopContent += "또라이|"
		stopContent += "몰카|"
		stopContent += "병신|"
		stopContent += "보쥐|"
		stopContent += "보지|"
		stopContent += "보짓물|"
		stopContent += "빨아|"
		stopContent += "뽀르노|"
		stopContent += "뽀지|"
		stopContent += "뽀찌|"
		stopContent += "성교|"
		stopContent += "섹스|"
		stopContent += "섹쓰|"
		stopContent += "십새끼|"
		stopContent += "썅|"
		stopContent += "씨발|"
		stopContent += "애무|"
		stopContent += "야동|"
		stopContent += "야설|"
		stopContent += "에로|"
		stopContent += "여체|"
		stopContent += "오랄|"
		stopContent += "오럴|"
		stopContent += "오르가슴|"
		stopContent += "오르가즘|"
		stopContent += "옹녀|"
		stopContent += "외설|"
		stopContent += "운영자|"
		stopContent += "원조교제|"
		stopContent += "원조녀|"
		stopContent += "유두|"
		stopContent += "육봉|"
		stopContent += "음모|"
		stopContent += "음부|"
		stopContent += "자아지|"
		stopContent += "자위|"
		stopContent += "자쥐|"
		stopContent += "자지|"
		stopContent += "자취방|"
		stopContent += "젓까|"
		stopContent += "정력|"
		stopContent += "정사|"
		stopContent += "정신병자|"
		stopContent += "젖까|"
		stopContent += "젖꼭지|"
		stopContent += "좆|"
		stopContent += "창녀|"
		stopContent += "창년|"
		stopContent += "체위|"
		stopContent += "컴섹|"
		stopContent += "컴쌕|"
		stopContent += "컴쎅|"
		stopContent += "콜컬|"
		stopContent += "패티쉬|"
		stopContent += "펀색|"
		stopContent += "페니스|"
		stopContent += "페티쉬|"
		stopContent += "페티시|"
		stopContent += "포루노|"
		stopContent += "포르노|"
		stopContent += "폰팅|"
		stopContent += "핥아|"
		stopContent += "항문|"
		stopContent += "호빠|"
		stopContent += "홀애비|"
		stopContent += "bozy|"
		stopContent += "jaji|"
		stopContent += "molca|"
		stopContent += "oral|"
		stopContent += "penis|"
		stopContent += "porno|"
		stopContent += "sex|"
		stopContent += "ssex|"
		stopContent += "zazi|"
		stopContent += "미친|"
		stopContent += "뻐큐|"
		stopContent += "시발년|"
		stopContent += "시발놈|"
		stopContent += "시팔년|"
		stopContent += "시팔놈|"
		stopContent += "씨팔|"
		stopContent += "씹|"
		stopContent += "asshole|"
		stopContent += "bitch|"
		stopContent += "Bullshit|"
		stopContent += "FUCK|"
		stopContent += "fucking|"
		stopContent += "fuckyou|"
		stopContent += "pussy|"
		stopContent += "suck"

	var sChk = stopContent.split("|");

	for ( var i=0; i<sChk.length; i++ ) {
		sBuf =  sBuf.split(sChk[i]).join("***");
	}

	return sBuf;
}

