function geraEditor()
{
	var config = new HTMLArea.Config();
	config.debug = false;
	config.width = 700;
	config.height = 300;

	config.toolbar = [
		[ "fontname", "space",
		  "fontsize", "space",
		  "formatblock", "space" ,  "bold", "italic", "underline"] ,

		[ "copy", "cut", "paste",  "space", "undo", "redo", "space", "removeformat", 
		"justifyleft", "justifycenter", "justifyright",
		 "justifyfull", "orderedlist", "unorderedlist" ,  "forecolor", "hilitecolor",
		  "createlink",  "inserttable", "insertimage"]
	];
	
	config.statusBar = false;

	HTMLArea.init();
	HTMLArea.onload = function(){
		editor = new HTMLArea('body',config);
		editor.generate();
	}
}

function coletaDadosEditor()
{
	document.getElementById('body').value = editor.getHTML();
	return true;
}