function insertTxt(myTextArea,code)
{
    //$(myTextArea).val($(myTextArea).val()+"<b>"+code+"</b>,&nbsp;");
    $(myTextArea).tinymce().selection.setContent("<b>"+code+",&nbsp;</b>");
    $(myTextArea).tinymce().selection.collapse(true);
    $(myTextArea).tinymce().focus();
}

function initTxt(name)
{ //code,
    $('textarea[name='+name+']').tinymce({
        script_url : '/js/tiny_mce/tiny_mce.js',
        theme : "advanced",
        theme_advanced_buttons1 : "emotions,|,forecolor, bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,charmap,emotions,|,bullist,numlist,|,blockquote,|,undo,redo,|,link,unlink,image",
        theme_advanced_buttons2 : "", theme_advanced_buttons3 : "", theme_advanced_buttons4 : "",
        theme_advanced_toolbar_location : "bottom",
        theme_advanced_toolbar_align : "left",
        theme_advanced_statusbar_location : "none",
        theme_advanced_resizing : false,
        convert_urls : false,
        skin : "o2k7",
        width: "100%",
        plugins : "emotions",
        language: 'ru',
        dialog_type : "modal",
        nowrap : true,
        forced_root_block : false,
        force_br_newlines : true,
        force_p_newlines : false
    });
}