HELP! Multiple Pop Up windows not working

I am building a website in flash 8 and am having some difficulties with pop up windows. I have a navigation bar with various buttons, I want three of these buttons to open up seperate url’s in a pop up style window. I can get one to work, but cannot get the other two to work. All I need to know is how to get different buttons to open different pop ups. Here is the action script and javascript I am using, please tell me where I’m going wrong:

button 1:
on (release) {
getURL (“javascript:open_window(‘http://www.mysite.com/myhtml.html’,'height=350,width=600,toolbar=no,scrollbars=yes’)”);
}

button2:
on (release) {
getURL (“javascript:open_window2(‘http://www.mysite.com/myhtml2.html’,'height=350,width=600,toolbar=no,scrollbars=yes’)”);
}

javascript:

<script language=“javascript”>
<!-- hide it
function open_window(http://www.[COLOR=#000000]mysite.com/myhtml[/COLOR].html) {
window = window.open(<A href=“http://www.mysite.com/myhtml.html,“name”>http://www.[COLOR=#000000]mysite.com/myhtml[/COLOR].html,"name”,‘toolbar=0,location=0,dire ctories=0,status=0,menubar=0,scrollbars=yes,resizable=0,width=600,height=500’);
}

function open_window2(http://www.[COLOR=#000000]mysite.com/myhtml2[/COLOR].html) {
window2 = window.open(<A href=“http://www.mysite.com/myhtml2.html,“name”>http://www.[COLOR=#000000]mysite.com/myhtml2[/COLOR].html,"name”,‘toolbar=0,location=0,dir ectories=0,status=0,menubar=0,scrollbars=no,resizable=0,width=500,height=525’);
}
// -->
</script>

I will really appreciate any help given. Thank you so much.