In case this is useful to some body.
To integrate CuteEditor with Codecharge studio , the best way I was able to get it working was using the Iframe method posted earlier. The problem of not being able to access the ifram Form elements can be handled if the iframe is named properly with and id as well as a name and using the following statements to access /set values into the editor, via JScript
1: strValue = frames["frameDescription"].obj_CustomEditor.getHTML()
-- NOTE :"CustomEditor" would be the id of your editor, and "frameDescription" would be the name of your frame
2: frames["frameDescription"].obj_CustomEditor.PasteHTML('This text goes into the Editor')
This I have tested with Mozilla right now. Hoping works well with IE too
Elma