function check_profanity(str) {
    words = /(pizda|pizde|pula|pule|floci|coaie|muie|muist|caca|cacat|rahat|sex)/i
    if (words.test(str)) {
        //  alert(RegExp.lastMatch)
        return false;
    }
    return true;
}
