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.