// HTMLArea stuff

var config = new HTMLArea.Config();    // create new config object having all the default values

var config_full = new HTMLArea.Config();

config.width = '600px';
config.height = '200px';

config.pageStyle =
  'body { font-size:x-small; background-color: #ffffff; color: #000000; font-family: verdana,sans-serif; } ' +
  'p { font-width: normal; } ';

config.killWordOnPaste = true;

config_full.height = config.height;
config_full.pageStyle = config.pageStyle;
config_full.toolbar = [
[ "fontname", "space",
  "fontsize", "space",
  "formatblock", "space",
  "bold", "italic", "underline", "separator",
  "strikethrough", "subscript", "superscript", "separator",
  "copy", "cut", "paste", "space", "undo", "redo" ],
		
[ "justifyleft", "justifycenter", "justifyright", "justifyfull", "separator",
  "insertorderedlist", "insertunorderedlist", "outdent", "indent", "separator",
  "forecolor", "hilitecolor", "textindicator", "separator",
  "inserthorizontalrule", "createlink", "insertimage", "inserttable", "htmlmode", "separator",
  "popupeditor", "separator", "showhelp", "about" ]
];

config.toolbar = [
[
	"bold", "italic", "underline", 
	"justifyleft", "justifycenter", "justifyright", "justifyfull",
	"insertorderedlist", "insertunorderedlist", "outdent", "indent", "separator",
	"copy", "cut", "paste", "space", "undo", "redo", "createlink", "insertimage", "inserttable",	"htmlmode"]

];

//config.stylesheet = "../styles/admin_new.css";

// NOTE:  You can remove any of these blocks and use the default config!


