Links in Dynamic Text

Alright, now I’ve searched for over an hour trying to find out what exactly is wrong with my code to no avail…

Here’s the deal: I have a dynamic text box which loads variables from a PHP file (which in turn loads everything from a mySQL database) and there are links in it. When loaded, the links look like links, but they do not act like links. They are not clickable at all. I don’t understand what’s wrong because I used the same exact technique on another site (actually the predecessor of what I’m working on) and it worked perfectly.

If you’d like to see the site in (beta) action, go here.

Here is the code I am using to load up the stuff…

[AS]list1Up._visible = (list1.maxscroll>1);
list1Down._visible = (list1.maxscroll>1);
list1Scroll._visible = (list1.maxscroll>1);
list1.onChanged = function() {
list1Up._visible = (list1.maxscroll>1);
list1Down._visible = (list1.maxscroll>1);
list1Scroll._visible = (list1.maxscroll>1);
};

list2Up._visible = (list2.maxscroll>1);
list2Down._visible = (list2.maxscroll>1);
list2Scroll._visible = (list2.maxscroll>1);
list2.onChanged = function() {
list2Up._visible = (list2.maxscroll>1);
list2Down._visible = (list2.maxscroll>1);
list2Scroll._visible = (list2.maxscroll>1);
};
var lyricsFormat = new TextField.StyleSheet();
lyricsFormat.load(“http://s90122713.onlinehome.us/flash/styles/lyrics.css”);
loadSongList = new LoadVars();
loadSongList.load(“http://s90122713.onlinehome.us/flash/lyrics.php”);
loadSongList.onLoad = function() {
list1.styleSheet = lyricsFormat;
list1.html = true;
list1.htmlText = this.list1;
list2.styleSheet = lyricsFormat;
list2.html = true;
list2.htmlText = this.list2;
};
lyricsUp._visible = (lyrics.maxscroll>1);
lyricsDown._visible = (lyrics.maxscroll>1);
lyricsScroll._visible = (lyrics.maxscroll>1);
lyrics.onChanged = function() {
lyricsUp._visible = (lyrics.maxscroll>1);
lyricsDown._visible = (lyrics.maxscroll>1);
lyricsScroll._visible = (lyrics.maxscroll>1);
};
lyrics.text = “Select a song from above…”;

loadSong = new function( songNum ) {
lyrics.styleSheet = lyricsFormat;
lyrics.html = true;
lyrics.htmlText = “Loading lyrics…”
lyrics = new LoadVars();
lyrics.load(“http://s90122713.onlinehome.us/flash/lyrics.php?songNum=” + songNum);
lyrics.onLoad = function() {
lyrics.htmlText = this.lyrics;
};
};
this.stop();[/AS]

And here is what the PHP feeds into Flash:

&list1=<a href="asfunction:loadSong,1">Failure to Delay</a><br>&list2=<a href="asfunction:loadSong,2">Fade to Honesty</a><br>

I’d post the PHP code in entirety, but it’s not giving me any problems at all. The way I did it before was with .txt files, but the formatting was exactly the same…

Also, if there is any way to optimize that code that I don’t know of, it would be great if anybody could help me out on that too