// This javascript code is used to initialize the HTML editors used in the aspTester sample application.
// It contains a default implementation of the editor initialization.  You may want to create your own.
// For more information on what can be set in this function, visit http://wiki.moxiecode.com/index.php/TinyMCE:Configuration

// Too simple.
/*
tinyMCE.init({
	mode : "textareas",
	editor_selector : "HTMLRichEditControl",
	theme : "simple"
});
*/

// Just right.
tinyMCE.init({
	mode : "textareas",
	editor_selector : "HTMLRichEditControl",
	theme : "advanced",
	theme_advanced_buttons1 : "bold,italic,underline,forecolor,backcolor,fontselect,fontsizeselect,|,undo,redo,|,code",
	theme_advanced_buttons2 : "",
	theme_advanced_buttons3 : "",
	theme_advanced_toolbar_location : "top",
	theme_advanced_path_location : "none",
	theme_advanced_resize_horizontal : false,
	theme_advanced_resizing : true,
	nonbreaking_force_tab : true,
	apply_source_formatting : true
});
