Dynamic text -- rendering as html

I’m using the LoadVars function to load an external text file and render it as html for easy updates to content. However, flash will not display one section of the text. I have had it formatted with <b></b> tags, <p></p> tags, among others. I’ve tried it in a new flash file and it works perfectly. Code is as follows:

Action Script

var myTXT:LoadVars = new LoadVars();
myTXT.load(“main.txt”);

myTXT.onLoad = function(success){
if (success){
main_txt.htmlText = myTXT.body;
}
}

Text File

&body=<p>America’s Family transforms the lives of hardworking Americans by working with a network of employer and community partners. We provide loans, community resources, and mentorship opportunities designed to achieve financial stability and enhance personal and social development in order to achieve the American dream.</p>