Hello all 
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.