


function wysiwyg_comments ()
	{

//tinyMCE.execCommand("mceAddControl", true, "comments");

/*
tinyMCE.init(
{
theme : "advanced",
	mode : "exact",
	elements : "comments",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left"
}
);
*/


//theme_advanced_toolbar_align : "left",

	}


CKEDITOR.editorConfig = function( config )
{
	// Define changes to default configuration here. For example:
	// config.language = 'fr';
	// config.uiColor = '#AADC6E';




config.toolbar = 'Full';

config.toolbar_Full =
[
    ['Source'],
    ['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','Flash','Table','HorizontalRule','Smiley','SpecialChar'],
    '/',
    ['Styles','Format','Font','FontSize'],
    ['TextColor','BGColor']
];


config.enterMode = 3;
config.ShiftEnterMode = 1;
config.resize_enabled = false;
config.startupFocus = true;


};


