GetURL Problems

[LEFT]I am having a problem with GetURL in flash 8. I have the command target a frame in my web page, however instead of opening in the frame it opens in a new tab. (FireFox)

The frameset code for my site is:

<frameset rows="" cols="160," framespacing=“0” frameborder=“NO” border=“0”>
<frame src=“Links.html” name=“Links”>
<frame src=“Main.html” name=“Main” scrolling=“NO” noresize>
</frameset>
<noframes><body>

And the GetURL code is:

on (release) {
getURL(“Homepage.html”);
}

The pages work and the code works the only problem is that the link opens up in a new tab. I have also tried to use _parent and _top.

[/LEFT]