// ---------- ajouter un bloc
function makeBloc(div, html) {
	var e = document.getElementById(div);		//Ciblage du div
	e.innerHTML = html;
	test();
}
var area;
var test= function() {
  // installe nicEditor
	if (nicEditorConfig != null) area = new nicEditor({fullPanel : true}).panelInstance('text');
}
