function DHTMLArea(p_strElementId) {
    tinyMCE.execCommand('mceAddControl',false, p_strElementId);
}

tinyMCE.init({
    // General options
    mode : "none",
    theme : "advanced",
    plugins : "safari,save,paste",

    // Theme options
    theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,bullist,numlist,|,undo,redo,|,charmap,|,link,unlink",
    theme_advanced_buttons2 : "",
    theme_advanced_buttons3 : "",
    theme_advanced_toolbar_location : "top",
    theme_advanced_toolbar_align : "left",
    theme_advanced_statusbar_location : "none",
    theme_advanced_resizing : false,
    paste_auto_cleanup_on_paste : true,
    paste_remove_styles: true,
    paste_remove_styles_if_webkit: true,
    paste_strip_class_attributes: true
});

function DHTMLAreaToTextArea(p_strElementId){
    tinyMCE.triggerSave(); 
}

