<!-- tinyMCE -->
// Full featured
	tinyMCE.init({
		mode : "textareas",
		theme : "advanced",
		force_br_newlines: "true", //If you set this option to true, TinyMCE will force BR elements on newlines instead of inserting paragraphs.
		plugins : "insertdatetime,paste",
		theme_advanced_buttons1_add : "separator,forecolor,backcolor,separator,insertdate,inserttime",
		theme_advanced_buttons1_add_before: "cut,copy,paste,pastetext,pasteword,separator",
		theme_advanced_buttons2_add : "separator,fontselect,separator,fontsizeselect",
		theme_advanced_toolbar_location : "top",
		theme_advanced_toolbar_align : "left",
		content_css : "includes/style/tiny_mce.css",
	    plugin_insertdate_dateFormat : "%d-%m-%Y",
	    plugin_insertdate_timeFormat : "%I:%M:%S %p",
		extended_valid_elements : "hr[class|width|size|noshade],font[face|size|color|style],span[class|align|style]",
		editor_selector : "mceEditor"
});
<!-- /tinyMCE -->


