'
+ '', // CSS file used to style the document contained within the editor
bodyStyle: "padding-top:0px;margin:4px; font:10pt Arial,Verdana; cursor:text" // style to assign to document body contained within the editor
});
setTimeout(function(){
//change source mode
$("#contents1").cleditor()[0].$frame.hide();
$("#contents1").cleditor()[0].$area.show();
//change ritch text mode
$("#contents1").cleditor()[0].$area.hide();
$("#contents1").cleditor()[0].$frame.show();
$("#contents1").cleditor()[0].focus();
}, 1000);
});