
function createEditors( )
{	
	elems = document.body.getElementsByTagName('textarea'); 
	
	for(var x = 0; x < elems.length; x++) 
	{ 
		delete CKEDITOR.instances[ elems[x].id ];
		CKEDITOR.replace( elems[x].id, { filebrowserUploadUrl : 'upload_editor.php' } );
	}
	
	CKEDITOR.config.removePlugins = 'elementspath';
	CKEDITOR.config.removePlugins = 'resize';
	CKEDITOR.config.height = 450;
	CKEDITOR.config.toolbar = 'Custom';

	CKEDITOR.config.toolbar_Custom =
	[
		//['Cut','Copy','Paste','PasteText','PasteFromWord'],
		['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
	    ['Bold','Italic','Underline','Strike','-','Subscript','Superscript'],
	    ['NumberedList','BulletedList','-','Outdent','Indent','Blockquote'],
	    ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
	    ['Link','Unlink','Anchor'],
	    ['Image','Table','HorizontalRule','SpecialChar','PageBreak'],
	    ['Styles','Format','Font','FontSize'],
	    ['TextColor','BGColor']
	];

}
