Javascript pop up window problem in IE

Hello all :slight_smile:

I have a problem with my site and I wondered if anyone can help me?
I used a tutorial to make some of the buttons in my flash site open
new URLS in javascript pop up windows.

It works beautifully in firefox but I canā€™t seem to get it to work

in IE (Iā€™m using IE6).

In the IE browser it either displays the message ā€˜doneā€™ without

opening the window, or ā€˜done, but with errors on pageā€™

I am using the following method:

[COLOR=Navy]In my flash document:[/COLOR]

chairs_btn.onRelease = function(){
getURL("javascript:launch

(ā€˜http://www.rigascucina.gr/chairsā€™)");
}

[COLOR=Navy]and in my html the following javascript:[/COLOR]

<script language = ā€œJavascriptā€>
function launch(page){
OpenWin = this.open(page,ā€œwww.rigascucina.gr/chairs/index.htmlā€,

"toolbar = no, scrollbars = no, location = no, width = 716, height

= 434");
}
</script>

i would be really grateful for any advice.