
function tinyMCEinit(id)
{
	tinyMCE.init({
	  mode: "exact",
		elements: id,
	  language: "es",
		content_css: "../../../../css/main.css",
	  theme: "advanced",
	  extended_valid_elements: "hr[class|width|size|noshade]",
		plugins: "table,advlink,inlinepopups, contextmenu, searchreplace, style",
	  relative_urls: false,
	  debug: false,
	  theme_advanced_buttons1:"bold,italic,underline,|,justifyleft,justifycenter,justifyright,justifyfull,|,bullist,numlist,|,undo,redo,|,outdent,indent,|,link,unlink,|,cut,copy,paste",
		theme_advanced_buttons2:"fontselect,fontsizeselect,styleselect,formatselect,styleprops,removeformat,cleanup,|,forecolor,backcolor,|,sub,sup,|,charmap,hr",
		theme_advanced_buttons3: "tablecontrols,|,search,replace,code",
		theme_advanced_blockformats:"p,h3,h4,h5,h6,blockquote",
		theme_advanced_styles:"Caja 1\=caja1;Caja 2\=caja2;Caja 3\=caja3;Caja 4\=caja4",
		theme_advanced_fonts:"Sans serif\=Verdana\,Arial\,sans-serif,Serif\=Times New Roman\,serif,Monoespaciada\=Courier New,\Courier",
		theme_advanced_statusbar_location:"bottom",
		theme_advanced_toolbar_location:"top",
		theme_advanced_toolbar_align:"left",
		theme_advanced_path_location:"bottom",
		
		setup : function(ed) {
      ed.onChange.add(function(ed, l) {
					changed = true; // Debe ser una variable global ya definida
      });
   	}

	});
	
}
