/*
	FILE : ha_setup.js
	DATE : 2004.10.8.dave
	DESC : CONFIGURATION FOR THE HTML WYSIWYG
*/

function initEditor(id,w,h) 
{
	var editor = new HTMLArea(id);

	var cfg = editor.config; // THIS IS THE DEFAULT CONFIGURATION
	
	if (typeof w == "undefined") cfg.width = "600"; else cfg.width = w; 
	if (typeof h == "undefined") cfg.height = "300"; else cfg.height =  h;

	cfg.toolbar = [
		[ "bold", "italic", "underline", "separator",
		  "subscript", "superscript", "separator",
		  "justifyleft", "justifycenter", "justifyright", "justifyfull", "separator",
		  "copy", "cut", "paste", "space", "undo", "redo", "separator",
		  "insertorderedlist", "insertunorderedlist", "separator",
		  "forecolor", "insertimage", "separator",
		  "inserthorizontalrule", "createlink", "htmlmode" ]
	];
	
	cfg.pageStyle = "body { font-size: 9pt; font-family: verdana,arial,helvetica,sans-serif; }";

	cfg.killWordOnPaste = true;
	
	editor.generate();
}
