// load htmlarea3
  _editor_url="include/htmlarea3/index.html";
  function editor_generate(strFieldName) {
     editor = new HTMLArea(strFieldName);
	 editor.config.toolbar = [
 	[ "fontname", "space",
	  "fontsize", "space",
	  "space", "bold", "italic", "underline", "strikethrough", "separator", "subscript", "superscript" ],

	[ "justifyleft", "justifycenter", "justifyright", "justifyfull", "separator",
	  "copy", "cut", "paste", "separator", "lefttoright", "righttoleft" ],

	[  "insertorderedlist", "insertunorderedlist", "outdent", "indent", "separator",
	  "forecolor", "hilitecolor", "separator",
	  "inserthorizontalrule", "createlink", "insertimage", "inserttable", "htmlmode", "separator",
	  "showhelp", "about" ]
	];

	editor.config.fontname = {
		"Verdana":	   'verdana,arial,helvetica,sans-serif',
		"Arial":	   'arial,helvetica,sans-serif',
		"Courier New":	   'courier new,courier,monospace',
		"Georgia":	   'georgia,times new roman,times,serif',
		"Tahoma":	   'tahoma,arial,helvetica,sans-serif',
		"Times New Roman": 'times new roman,times,serif',
		"impact":	   'impact',
		"WingDings":	   'wingdings'
	};

     editor.config.height = 500;
     editor.config.width = 400;
     editor.config.pageStyle = 'body {font-family:verdana,helvetica,sans-serif;font-size:8pt;} ';
     editor.generate();
     return false;
  }

  function editor_generate_email(strFieldName) {
     editor = new HTMLArea(strFieldName);
	 editor.config.toolbar = [
 	[ "fontname", "space",
	  "fontsize", "space",
	  "space", "bold", "italic", "underline", "strikethrough", "separator", "subscript", "superscript" ],

	[ "formatblock", "space",  "separator", "justifyleft", "justifycenter", "justifyright", "justifyfull", "separator",
	  "copy", "cut", "paste", "separator", "lefttoright", "righttoleft" ],

	[  "insertorderedlist", "insertunorderedlist", "outdent", "indent", "separator",
	  "forecolor", "hilitecolor", "separator",
	  "inserthorizontalrule", "createlink", "inserttable", "htmlmode", "separator",
	  "showhelp", "about" ]
	];

	editor.config.fontname = {
		"Verdana":	   'verdana,arial,helvetica,sans-serif',
		"Arial":	   'arial,helvetica,sans-serif',
		"Courier New":	   'courier new,courier,monospace',
		"Georgia":	   'georgia,times new roman,times,serif',
		"Tahoma":	   'tahoma,arial,helvetica,sans-serif',
		"Times New Roman": 'times new roman,times,serif',
		"impact":	   'impact',
		"WingDings":	   'wingdings'
	};

     editor.config.height = 500;
     editor.config.width = 400;
     editor.config.isEmail = true;
     editor.config.pageStyle = 'body {font-family:verdana,helvetica,sans-serif;font-size:8pt;} ';
     editor.generate();
     return false;
  }
