
function incluir_editor(campo, tinyMCEImageList){
	
	tinyMCE.init({
		mode : "exact",
		elements : campo,
		width: "458",
		height: "350",
		theme : "advanced",
		plugins : "devkit,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template",				
		theme_advanced_toolbar_location : "top",
		theme_advanced_toolbar_align : "left",
		theme_advanced_path_location : "bottom",
		content_css : "estilo.css",
		plugin_insertdate_dateFormat : "%Y-%m-%d",
		plugin_insertdate_timeFormat : "%H:%M:%S",
		extended_valid_elements : "hr[class|width|size|noshade],font[face|size|color|style],span[class|align|style]",		
		external_link_list_url : "js/var_ficheros.js",
		external_image_list_url : "js/var_ficheros.js",
		flash_external_list_url : "js/var_ficheros.js",
		media_external_list_url : "js/var_ficheros.js",
		template_external_list_url : "js/var_ficheros.js",		
		file_browser_callback : "fileBrowserCallBack",
		theme_advanced_resize_horizontal : false,
		theme_advanced_resizing : true,
		nonbreaking_force_tab : true,
		apply_source_formatting : true,
		template_replace_values : {
			//username : "Jack Black",
			//staffid : "991234"
		}
	});
}

function fileBrowserCallBack(field_name, url, type, win) {
			
	var features1 = "toolbar=no,location=no,status=yes,menubar=no,scrollbars=no,resizable=no,width=380,height=180";
	
	var ventana = window.open("../../upload.php?win="+win.name+"&field_name="+field_name, "mceUpload" + new Date().getTime(), features1);
			
	ventana.focus();	
}