		tinyMCE_GZ.init({
			plugins : 'spellchecker',
			theme : 'advanced',
			language : 'en',
			disk_cache : true,
			debug : false
		});
		tinyMCE.init({
			mode : "specific_textareas",
			plugins : 'spellchecker,ezfilemanager',
			theme : 'advanced',
			language : 'en',
			theme_advanced_toolbar_location : 'top',
			theme_advanced_buttons1 : "bold,italic,strikethrough,|,undo,redo,|,code,|,spellchecker",
			theme_advanced_buttons2 : "",
			theme_advanced_buttons3 : "",
			theme_advanced_toolbar_align : "center",
			editor_selector : "tinymce_editor_simple_en",
			nonbreaking_force_tab : true,
			paste_auto_cleanup_on_paste : true,
			paste_preprocess : function(pl, o) {
				// Content string containing the HTML from the clipboard
				// alert(o.content);
			},
			paste_postprocess : function(pl, o) {
				// Content DOM node containing the DOM structure of the clipboard
				// alert(o.node.innerHTML);
			},
			spellchecker_languages : "+English=en",
			theme_advanced_resizing_min_height : 250,
			setup : function(ed) {
				ed.onInit.add(function() {
					var e = tinymce.DOM.get(ed.id + '_tbl'), ifr = tinymce.DOM.get(ed.id + '_ifr'), w = ed.getWin(), dh;
					var h = 30; //new height of edit area
					dh = e.clientHeight - ifr.clientHeight; //get the height of the toolbars
					ed.theme.resizeTo(w.clientWidth, h + dh);
				});
			}
		});

// for ez filemanager add button"ezfilemanager" and plugin "ezfilemanager" and	relative_urls : false,
