function insertText(textBox, insertText){
	cleditor.execCommand("inserthtml", insertText);
	cleditor.updateTextArea();
	cleditor.updateFrame();
  /*if(document.selection) { //IE way
    textBox.focus();
    document.selection.createRange().text = insertText;
  }
  else //Firefox Way
  {
    var tb = textBox;
    var first = tb.value.slice(0, tb.selectionStart);
    var second = tb.value.slice(tb.selectionStart);
    tb.value = first + insertText + second;
  }
  */
}  //end function insertText(textBox, insertText){
