// TINY MCE Initialization

tinyMCE.init({
	mode : "textareas",
	theme : "advanced",
	editor_selector : "mceEditor",
	language : "nl",
	//plugins : "inlinepopups,table,advhr,advimage,advlink,emotions,preview,paste,directionality,contextmenu",
	//plugins : "table,advhr,advimage,advlink,emotions,preview,paste,directionality,contextmenu",
	plugins : "simplepaste",
	//theme_advanced_buttons2_add_before: "cut,copy,paste",
	//theme_advanced_buttons3_add_before : "tablecontrols,separator",
	theme_advanced_buttons1 : "bold,italic,underline",
	theme_advanced_buttons2 : "",
	theme_advanced_buttons3 : "",
	//theme_advanced_disable : "",
	theme_advanced_toolbar_location : "top",
	theme_advanced_toolbar_align : "left",
	theme_advanced_statusbar_location : "none",
	file_browser_callback : "fileBrowserCallBack",
	document_base_url : path_base + "/",
	relative_urls : false,
	convert_urls : false, 
	apply_source_formatting : true,
	accessibility_warnings : false,
	content_css : relative_path + "/css/tinyMCE.css?" + new Date().getTime()
});


