function createWysiwyg(resizehorizontal, resizevertical, plugins, buttons1, buttons2, buttons3){
	tinyMCE.init({
		mode : "textareas",
		editor_selector : "wysiwyg",

		auto_reset_designmode : true,
		invalid_elements : "strong,em",
		relative_urls : true,
		force_p_newlines : false,
		force_br_newlines : true,
		force_hex_style_colors : false,
		cleanup : true,
		
		theme : "advanced",
		plugins : plugins,
		theme_advanced_buttons1 : buttons1,
		theme_advanced_buttons2 : buttons2,
		theme_advanced_buttons3 : buttons3,
		theme_advanced_toolbar_location : "top",
		theme_advanced_toolbar_align : "left",
		theme_advanced_path_location : "bottom",
		theme_advanced_resize_horizontal : resizehorizontal,
		theme_advanced_resizing : resizevertical
	});
}