Pop-up not working

hi,
i’m having problem trying to get this working and just wondering if anyone is keen to get me out of my misery.
i made a scroller with some dynamic text in it and i wanted to make a single word (dynamic) as a hyperlink to a pop-up html file which actually define the word. so in flash mx, i put javascript :Launch(‘http://www.geocities.com/link/dynamic.html’) in the URL field in properties. When i published the animation, it generated my html file which i then edit it in Notepad. This is what i did, i put the following code

<SCRIPT LANGUAGE=“JavaScript”>
<!-- Begin
function Launch(page) {
OpenWin = this.open(page, “KirupaStyle”, “toolbar=no,menubar=no,location=no,scrollbars=no,resizable=yes,width=550,height=250”);
}
// End -->
</SCRIPT>

anywhere between the <Body> and </Body> tags of my html file.
And that was all that i did.

Now when i’m in preview mode, i clicked on “dynamic” and there’s no pop-up but the Yahoo! default page with the url
http://www.geocities.com/link/javascript%20:Launch(‘http://www.geocities.com/link/dynamic.html’)

Any idea? Any help would be greatly appreciated.

We can’t see the code you used, place PHP tags around them.

Oops!..ok here it is

<SCRIPT LANGUAGE="JavaScript"> 
<!-- Begin 
function Launch(page) { 
OpenWin = this.open(page, "dynamic", "toolbar=no,menubar=no,location=no,scrollbars=no,resizable=yes,width=350,height=550"); 
} 
// End --> 
</SCRIPT> 

Try replacing it with

<SCRIPT LANGUAGE="JavaScript"> 
function Launch(page) { 
window.open(page, 'dynamic', 'toolbar=no,menubar=no,location=no,scrollbars=no,resizable=yes,width=350,height=550'); 
} 
</SCRIPT>