/* Editor variables */

	var editorStylesheet = "/css/editor.css";
	var editorInsertParagraphs = true;

	/* Items to appear in toolbar. */
	var editorToolbarItems = new Array();
	
	editorToolbarItems.push("bold");
	editorToolbarItems.push("italic");
	editorToolbarItems.push("hyperlink");
	editorToolbarItems.push("unorderedlist");
	editorToolbarItems.push("orderedlist");
	editorToolbarItems.push("indent");
	editorToolbarItems.push("outdent");	
	editorToolbarItems.push("image");
	editorToolbarItems.push("htmlsource");

	var allowedTags=["b","a","pre","quote","p","br","img","strong","em","ol","ul","li","blockquote","s","object","param","embed"];
	var allowedAttributes=["href","author","commentid","src","alt","title","name","value","type","wmode","width","height"];
	var tag_counts = new Array();
		for(var i=0;i<allowedTags.length;i++) {
			tag_counts[i] = 0;
		}
	var no_close = ["img","br","param","embed"];
	var protocol_attributes = ["src","href"];
	var allowed_protocols = ["http","ftp","mailto"];
	var carriageReturnTags = ["p","pre"];

