В шаблоне «Стриница материалов и комментариев к нему» между <head> и </head> ставим:
<script type="text/javascript">
function emoticon(code){
if (code != ""){
var txtarea = document.addform.message;
code = ' ' + code + ' ';
if (document.selection) {
txtarea.focus();
var txtContent = txtarea.value;
var str = document.selection.createRange();
if (str.text == ""){str.text = code;}
else if (txtContent.indexOf(str.text) != -1){str.text = code + str.text;}
else {txtarea.value = txtContent + code;}
}
else{txtarea.value = txtarea.value + code;}
}
}
</script>
В шаблоне «Вид комментариев» вместо «$NAME$»:
Пробелы в [ b] и [ /b] убрать.
Готово! :-)

