# Java/flash popup issue in i.e

**URL:** https://forum.kirupa.com/t/java-flash-popup-issue-in-i-e/227753
**Category:** Uncategorized
**Created:** [June 1, 2007, 7:25pm UTC](https://forum.kirupa.com/t/java-flash-popup-issue-in-i-e/227753 "2007-06-01T19:25:40Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![thesupermarket](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/thesupermarket/32/3688_2.png) [@thesupermarket](https://forum.kirupa.com/u/thesupermarket)
#### Post date: [June 1, 2007, 7:25pm UTC](https://forum.kirupa.com/t/java-flash-popup-issue-in-i-e/227753/1 "2007-06-01T19:25:40Z")

</div>

i’m making some changes to page [http://theparknyc.com/menu.html](http://theparknyc.com/menu.html) .  
when you click on the Prix Fixe forms a popup of caveats comes up.  
it works in every browser but internet explorer.

i’ve tried numerous methods and none of them work.

**method one:**  
this is currently applied to the lunch and dinner prix fixe forms  
flash code:

```auto
pflunch_btn.onRelease = function() {
    getURL("javascript:Launch('http://theparknyc.com/menus/prixfixe.html', 600, 500)");
    getURL('http://theparknyc.com/menus/ThePark_PFLunch.pdf');
    }
pfdinner_btn.onRelease = function() {
    getURL("javascript:Launch('http://theparknyc.com/menus/prixfixe.html', 600, 500)");
    getURL('http://theparknyc.com/menus/ThePark_PFDinner.pdf');
}

```

html code within tags:  
(this one is centered which i like)

```auto
<script language="JavaScript"> 
    function Launch(page, width, height) { 
        OpenWin = this.open(page, "The Park", "toolbar=no, menubar=no ,location=no, scrollbars=no, resizable=yes, width=" + width + ", height=" + height + ", top=" + (screen.height/2 - height/2) + ", left=" + (screen.width/2 - width/2) + "\""); 
    } 
</script>

```

**method two:**  
this is currently applied to the brunch prix fixe  
[http://www.actionscript.org/resources/articles/20/1/Spawning-External-Browser-Windows-Pop-ups/Page1.html](http://www.actionscript.org/resources/articles/20/1/Spawning-External-Browser-Windows-Pop-ups/Page1.html)

flash code:

```auto
pfbrunch_btn.onRelease = function() {
    getURL("javascript:spawnWindow('http://theparknyc.com/menus/prixfixe.html','The Park - Prix Fixe Caveat','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=600,height=500')")
    //getURL("javascript:Launch('http://theparknyc.com/menus/prixfixe.html', 600, 500)");
    getURL('http://theparknyc.com/menus/ThePark_PFBrunch.pdf');
}

```

html code within tags:

```auto
<script language="JavaScript">
function spawnWindow(URL,Name,features) {
        window.open(URL,Name,features);
}
</script>

```

the other option is that the caveats come up within the flash file kind of covering up the page and at the bottom of the caveats have a link to the pdf forms.

let me know what you know about i.e. and java pops.
