function initTinyMCE()
{
	tinyMCE.init({
		language: "es",
		mode: "textareas",
		theme: "advanced",
		plugins: "paste,tabfocus",
		theme_advanced_buttons1:
			"bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,fontselect,fontsizeselect,formatselect,|,undo,redo",
		theme_advanced_buttons2:
			"cut,copy,paste,pastetext,pasteword,|,selectall,removeformat,|,forecolorpicker,backcolorpicker,|,bullist,numlist,|," +
			"link,unlink,|,outdent,indent,|,sub,sup,|,charmap",
		theme_advanced_buttons3: "",
		theme_advanced_toolbar_location: "top",
		theme_advanced_toolbar_align: "left",
		theme_advanced_statusbar_location: "bottom",
		theme_advanced_resizing: false,
		paste_auto_cleanup_on_paste: true,
		height: "310",
		width: "500"
	});
}
