$(function() {
    jQuery('#btnSubmit').click(function() {
        var el = jQuery('#txtText');
        if (el.length == 1 && typeof (tinyMCE) == 'object') {
            tinyMCE.get('txtText').save();
        }
    });
});
var modalWindowHack = {
    init: function(id) {
        /*tinyMCE.init({
            theme: "advanced",
            mode: "textareas",
            plugins: "emotions",
            theme_advanced_buttons1: "bold,italic,underline,strikethrough,separator,justifyleft,justifycenter,justifyright,justifyfull,bullist,numlist,separator,outdent,indent,separator,undo,redo,separator,link,unlink,image,hr,removeformat,separator,sub,sup,separator,code,separator,emotions",
            theme_advanced_buttons2: "",
            theme_advanced_buttons3: "",
            add_form_submit_trigger: false,
            cleanup: true,
            onchange_callback: "passDataToNetControl"
        });*/
    }
}