Hi,
I am having trouble with multiple pop up windows. I have a movie that has two different buttons that I want to pop up two different windows.
The action script for the button looks like this
on(release){
getURL("JavaScript

op();");
}
The Java script between the <HEAD> and the </HEAD> looks like this
<SCRIPT LANGUAGE="JavaScript">
function pop(){
window.open("http://misc.htm","height=200,width=200,toolbar=no,scrollb ars=no");
}
</script>
But everytime I press the button I get a JavaScript error????
What am I doing wrong|?