function chkProf(strField) {
	var wordlist = "fuck|shit|nigger|bitch|cunt|asshole|pussy|cocksucker|piss|tits";
	wordlistarray = wordlist.split("|");
	var strText = ""
	strText = strField.toLowerCase();
	for(i=0; i<=wordlistarray.length-1; i++)
	{	
		if (strText.indexOf(wordlistarray[i]) != -1)
			{
				return true;
			}
	}

	return false;
}