// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

mba = {
	
	limpiar_fckeditor : function(){
		var oEditor = FCKeditorAPI.GetInstance('blog_post[text]');
		oEditor.SetHTML('')
	},
	
	restablecer_fckeditor : function(inicio){
		alert(inicio);
		var oEditor = FCKeditorAPI.GetInstance('blog_post[text]');
		oEditor.SetHTML(inicio)
	}
}



