
    (function() {
    //Setup some private variables
    var Dom = YAHOO.util.Dom,
        Event = YAHOO.util.Event;

        //The SimpleEditor config
        var myConfig = {
            height: '200px',
            width: '648px',
            dompath: true,
            focusAtStart: true,
            handleSubmit: true,
	        animate: true,
	        toolbar: {   
	        titlebar: 'Extra informatie Nederlands',   
	        buttons: [   
	             { group: 'textstyle', label: 'Font Style',   
	                 buttons: [   
	                     { type: 'push', label: 'Bold', value: 'bold' },   
	                     { type: 'push', label: 'Italic', value: 'italic' },   
	                     { type: 'push', label: 'Underline', value: 'underline' },   
	                     { type: 'separator' },   
	                     { type: 'color', label: 'Font Color', value: 'forecolor', disabled: true },   
	                     { type: 'color', label: 'Background Color', value: 'backcolor', disabled: true }  
	                 ]   
	             } ,
	             { type: 'separator' },   
			     { group: 'indentlist', label: 'Lists',   
			         buttons: [   
			             { type: 'push', label: 'Create an Unordered List', value: 'insertunorderedlist' },   
			             { type: 'push', label: 'Create an Ordered List', value: 'insertorderedlist' }   
			         ]   
			     }   
			
			] }  
            
        };
    //Now let's load the SimpleEditor..
    var myEditorNL = new YAHOO.widget.SimpleEditor('oms_nl', myConfig);
    myEditorNL.invalidHTML = {a: { keepContents: true }};
    myEditorNL.render();
   
           var myConfig = {
            height: '200px',
            width: '648px',
            dompath: true,
            focusAtStart: true,
            handleSubmit: true,
	        animate: true,   
	     	toolbar: {   
	        titlebar: 'Extra informatie Engels',   
	        buttons: [   
	             { group: 'textstyle', label: 'Font Style',   
	                 buttons: [   
	                     { type: 'push', label: 'Bold', value: 'bold' },   
	                     { type: 'push', label: 'Italic', value: 'italic' },   
	                     { type: 'push', label: 'Underline', value: 'underline' },   
	                     { type: 'separator' },   
	                     { type: 'color', label: 'Font Color', value: 'forecolor', disabled: true },   
	                     { type: 'color', label: 'Background Color', value: 'backcolor', disabled: true }  
	                 ]   
	             } ,
	             { type: 'separator' },   
			     { group: 'indentlist', label: 'Lists',   
			         buttons: [   
			             { type: 'push', label: 'Create an Unordered List', value: 'insertunorderedlist' },   
			             { type: 'push', label: 'Create an Ordered List', value: 'insertorderedlist' }   
			         ]   
			     }   
			
			] }  
            
        };
     
    var myEditorEN = new YAHOO.widget.SimpleEditor('oms_us', myConfig);
    myEditorEN.invalidHTML = {a: { keepContents: true }};
    myEditorEN.render();
    
              var myConfig = {
            height: '200px',
            width: '648px',
            dompath: true,
            focusAtStart: true,
            handleSubmit: true,
	        animate: true,   
	     	toolbar: {   
	        titlebar: 'Extra informatie Duits',   
	        buttons: [   
	             { group: 'textstyle', label: 'Font Style',   
	                 buttons: [   
	                     { type: 'push', label: 'Bold', value: 'bold' },   
	                     { type: 'push', label: 'Italic', value: 'italic' },   
	                     { type: 'push', label: 'Underline', value: 'underline' },   
	                     { type: 'separator' },   
	                     { type: 'color', label: 'Font Color', value: 'forecolor', disabled: true },   
	                     { type: 'color', label: 'Background Color', value: 'backcolor', disabled: true }  
	                 ]   
	             } ,
	             { type: 'separator' },   
			     { group: 'indentlist', label: 'Lists',   
			         buttons: [   
			             { type: 'push', label: 'Create an Unordered List', value: 'insertunorderedlist' },   
			             { type: 'push', label: 'Create an Ordered List', value: 'insertorderedlist' }   
			         ]   
			     }   
			
			] }  
            
        }; 
        
    var myEditorDE = new YAHOO.widget.SimpleEditor('oms_du', myConfig);
    myEditorDE.invalidHTML = {a: { keepContents: true }};
    myEditorDE.render();
    
               var myConfig = {
            height: '200px',
            width: '648px',
            dompath: true,
            focusAtStart: true,
            handleSubmit: true,
	        animate: true,   
	     	toolbar: {   
	        titlebar: 'Extra informatie Frans',   
	        buttons: [   
	             { group: 'textstyle', label: 'Font Style',   
	                 buttons: [   
	                     { type: 'push', label: 'Bold', value: 'bold' },   
	                     { type: 'push', label: 'Italic', value: 'italic' },   
	                     { type: 'push', label: 'Underline', value: 'underline' },   
	                     { type: 'separator' },   
	                     { type: 'color', label: 'Font Color', value: 'forecolor', disabled: true },   
	                     { type: 'color', label: 'Background Color', value: 'backcolor', disabled: true }  
	                 ]   
	             } ,
	             { type: 'separator' },   
			     { group: 'indentlist', label: 'Lists',   
			         buttons: [   
			             { type: 'push', label: 'Create an Unordered List', value: 'insertunorderedlist' },   
			             { type: 'push', label: 'Create an Ordered List', value: 'insertorderedlist' }   
			         ]   
			     }   
			
			] }  
            
        };
    var myEditorFR = new YAHOO.widget.SimpleEditor('oms_fr', myConfig);
    myEditorFR.invalidHTML = {a: { keepContents: true }};
    myEditorFR.render();
	})();
	
