FL-MX External text and mailto link problem

I’ve followed the tutorial on importing data from an external text file into flash but I need to make the email address active.

As per the tutorial the actionscript in the flash file is:
loadText = new LoadVars();
loadText.load(“data2.txt”);
loadText.onLoad = function() {
name.text = this.name;
email.text=this.email
location.text = this.location;
};

the data2.txt file is:
name=Kirupa Chinnathambi&[email protected]&location=Earth

How do I make the email address active so that it’s clickable from within Flash? I’ve tried many different things but none of them seem to work.

Thanks for any help.