function loadCKEditor(elementId, lang, replaceCRLF, css) {      
      if (!lang) {
        lang = 'de';
      }  

      var myTB =
          [                                              
              ['Bold','Italic','Underline','Strike','Subscript','Superscript','-','JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
              ['Format','Font','FontSize','NumberedList','BulletedList','-','Outdent','Indent','Blockquote'],
              ['Cut','Copy','Paste','PasteText','PasteFromWord','-','Scayt'],
              ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
              ['Link','Unlink'],
              ['Source','Maximize','-','About']
          ];    
      
      //config.contentsCss = ['/css/mysitestyles.css', '/css/anotherfile.css'];

      if (replaceCRLF) {
        var el = document.getElementById(elementId);
        if (el) {          
        	var newval = el.value;
        	newval = newval.replace(/</g,"&lt;");
            newval = newval.replace(/>/g,"&gt;");   
            
        	newval = newval.replace(/(\r\n|\r|\n)/g, "<br />");
            
            el.value = newval;     
        }  
      }
      if (CKEDITOR.instances[elementId]) {
    	  CKEDITOR.instances[elementId].destroy();
      }           
      if (css != null) {
          CKEDITOR.config.contentsCss = css;
      }
      CKEDITOR.replace(elementId, {language: lang, skin: 'office2003', toolbar: 'VTGDB', toolbar_VTGDB: myTB});
      
      
  }
