/**
 * @author e1032477
 */
$(function() {
    var frame = $("iframe[src^='/Providers/HtmlEditorProviders']").attr('id');
    $('#' + frame).load(function() {
        var thisFCKConfig = document.getElementById(frame).contentWindow.FCKConfig;
        thisFCKConfig.TemplatesXmlPath = SKINPATH + "scripts/fcktemplates.xml";
        thisFCKConfig.EMailProtection = 'none';
        thisFCKConfig.BodyClass = 'ccommonTitle';
    });

});


