// JavaScript Copyright, Films for Christ - Eden Communications - ChristianAnswers

function formatHTMLForDisplay(theHTML){
	re = new RegExp("<","g");
    theHTML = theHTML.replace(re,"<");
	re = new RegExp("</","g");
    theHTML = theHTML.replace(re,"<br /></");
	return theHTML;
}