Link in xml/flash not working

Hi,
I have hyperlinks in a xml file going into movie clip in flash. The link does not work. Can’t figure out what’s wrong.

Flash code:

//init TextArea component
myText.html = true;
myText.wordWrap = true;
myText.multiline = true;
myText.label.condenseWhite=true;
/******************************/
//load css
kungFuStyle = new TextField.StyleSheet();
kungFuStyle.load(“kungfu.css”);
myText.styleSheet = kungFuStyle;

/******************************/
//load in XML
kungFuContent = new XML();
kungFuContent.ignoreWhite = true;
kungFuContent.load(“solutions.xml”);
kungFuContent.onLoad = function(success)
{
if(success)
{
myText.text = kungFuContent;
}
}

xml:
<solutions>
<solutions><a href=“http://www.hotmail.com” target="_blank"><u>Link One</u></font></solutions>
</solutions>

Help is much appreciated
Thanks