Var string into html tags

hello everyone,

I have an issue I have been dealing with for a couple of days now… can’t seen to figure this one out…

I have a var string that I would like to make sure is linkable here is my code

ActionScript Code:
[LEFT][COLOR=#0000FF]public[/COLOR] [COLOR=#0000FF]static[/COLOR] [COLOR=#000000]**function**[/COLOR] getEmail[COLOR=#000000]([/COLOR]meetingDetails:MeetingDetails,confRoom:ConferenceRoom[COLOR=#000000])[/COLOR]:[COLOR=#0000FF]String[/COLOR] [COLOR=#000000]{[/COLOR]

[COLOR=#000000]var[/COLOR] iphoneUrl:[COLOR=#0000FF]String[/COLOR] = meetingDetails.[COLOR=#0000FF]url[/COLOR].[COLOR=#000080]replace[/COLOR][COLOR=#000000]([/COLOR][COLOR=#FF0000]“https”[/COLOR], [COLOR=#FF0000]“fuze”[/COLOR][COLOR=#000000])[/COLOR];
[COLOR=#000000]var[/COLOR] info:[COLOR=#0000FF]String[/COLOR] = [COLOR=#FF0000]“Click the following link:[COLOR=#000099]**
**[/COLOR]”[/COLOR] +
<a href=[COLOR=#FF0000]“iphoneUrl”[/COLOR]>iphoneUrl</a> + ;
[COLOR=#0000FF]return[/COLOR] info;
[COLOR=#000000]}[/COLOR]
[/LEFT]

so what this does is open your email client and the body will be already fill out with bunch of meeting info, so you can click send or edit this email. my issue is that the iphonUrl is not translated properly… all i’m getting is the following:

To join the web meeting thru your iPhone:

Click the following link:
iphoneUrl

so there is no link… the link is a unique protocol : fuze://fuzeweb.someapp.com/blabla/444

so my question is how can i make this line completely linkable

ActionScript Code:
[LEFT]&lt;a href=[COLOR=#FF0000]"iphoneUrl"[/COLOR]&gt;iphoneUrl&lt;/a&gt; + [COLOR=#FF0000]"[COLOR=#000099]**

[/COLOR][COLOR=#000099]
**[/COLOR]"[/COLOR] +
[/LEFT]