function mceOptions(admin){
	var options = {
		theme: 'advanced',
		mode: 'specific_textareas',
		editor_selector: 'wysiwyg',
		button_tile_map : true,
		gecko_spellcheck : true,
		docs_language : 'fr',
		language: 'fr',
		theme_advanced_path : false,
		theme_advanced_resizing : true,
		theme_advanced_resize_horizontal : false,
		theme_advanced_toolbar_location: 'top',
		theme_advanced_statusbar_location: 'bottom',
		theme_advanced_buttons1 : "bold,italic,underline,justifyleft,justifycenter,justifyright,justifyfull,forecolor",
		theme_advanced_buttons2 : "",
		theme_advanced_buttons3 : ""
	}
	
	if(admin)
	{
		options.editor_selector += '_admin';
		options.theme_advanced_path = true;
		options.theme_advanced_buttons1 += ',code';
	}
	
	return options;
}

tinyMCE.init(mceOptions());
tinyMCE.init(mceOptions(true));
