
function displayEditorContent() {

	var editorContent;
	var finalContentSource;

	editorContent = document.getElementById("editor1").value;
	editorContent = editorContent.replace("<![CDATA[", "");
	editorContent = editorContent.replace("]]>", "");

	var outputTitle = document.getElementById("OutputTitle");
	var outputFrame = document.getElementById("pasteOutput");
	var sourceTitle = document.getElementById("SourceTitle");
	var sourceFrame = document.getElementById("pasteSource");

	outputTitle.className = "show";
	outputFrame.className = "editorOutput clearfix";
	outputFrame.innerHTML = editorContent;

	sourceTitle.className = "show";
	sourceFrame.className = "editorOutput clearfix";

	finalContentSource = editorContent;

	finalContentSource = finalContentSource.replace(/<\/(h1|h2|h3|h4|h5|h6|li|p)[^>]*>/gim, "</$1>[BR]");
	finalContentSource = finalContentSource.replace(/<br \/>/gim, "<br />[BR]");
	finalContentSource = finalContentSource.replace(/</gim, "&lt;");
	finalContentSource = finalContentSource.replace(/>/gim, "&gt;");
	finalContentSource = finalContentSource.replace(/\[BR]/gim, '<br />');

	sourceFrame.innerHTML = finalContentSource;

	location.href="#epEdiorOutput";

	return false;
}