// JavaScript Document
function FCKeditor_OnComplete(editorInstance) {
            var fck_iframe = document.getElementById(editorInstance.Name + '___Frame');
            var fck_editing_area = fck_iframe.contentDocument.getElementById('xEditingArea');
            fck_editing_area.style.height = '100.1%';
            setTimeout(function() { fck_editing_area.style.height = '100%' }, 100);
        }