	tinyMCE.init({
		// General options
		mode : "exact",
		elements : "TinyMCE1, TinyMCE2, TinyMCE3, TinyMCE4, TinyMCE5",
		theme : "advanced",
		plugins : "safari,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template",

		// Theme options
		theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,formatselect,fontselect,fontsizeselect|,link,unlink,image,|,forecolor,backcolor,|",
		theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,tablecontrols,|,media,|,fullscreen",
		theme_advanced_buttons3 : "",
		theme_advanced_buttons4 : "",
		theme_advanced_toolbar_location : "top",
		theme_advanced_toolbar_align : "left",
		theme_advanced_statusbar_location : "bottom",
		theme_advanced_resizing : true,
		
		// Remplacement des sauts de ligne en "p" par des sauts de ligne en "br"
		forced_root_block : false,
		force_br_newlines : true,
	    force_p_newlines : false,
	    
	    // Utilisation de la langue française au lieu de la langue anglaise
	    language : "fr",
	    
	    // Replace values for the template plugin
		template_replace_values : {
			username : "Some User",
			staffid : "991234"
		}
	});