# Centered Pop-ups wont work in IE but will in firefox?!?!?

**URL:** https://forum.kirupa.com/t/centered-pop-ups-wont-work-in-ie-but-will-in-firefox/222232
**Category:** flash
**Created:** [April 11, 2007, 7:46pm UTC](https://forum.kirupa.com/t/centered-pop-ups-wont-work-in-ie-but-will-in-firefox/222232 "2007-04-11T19:46:55Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![akphotography](https://avatars.discourse-cdn.com/v4/letter/a/b2d939/32.png) [@akphotography](https://forum.kirupa.com/u/akphotography)
#### Post date: [April 11, 2007, 7:46pm UTC](https://forum.kirupa.com/t/centered-pop-ups-wont-work-in-ie-but-will-in-firefox/222232/1 "2007-04-11T19:46:55Z")

</div>

Hey, just need to know why this wont work in IE

[http://www.akmphoto.net/order\_microsite.html](http://www.akmphoto.net/order_microsite.html)

When you click on the btns the pop-up doesnt work…notice it works PERFECTLY in Firefox…any ideas??

code for the btns in flash are

```
  **Code:** green_btn.onRelease = function() { 

```

getURL(“javascript:Launch(‘[http://www.akmphoto.net/micro\_site\_2.html](http://www.akmphoto.net/micro_site_2.html)’, 776, 480)”);  
};

And the Java script used is

```
  **Code:** &lt;script language="JavaScript"&gt;  

```

function Launch(page, width, height) {  
OpenWin = this.open(page, “Silver Micro Site”, “toolbar=no, menubar=no ,location=no, scrollbars=no, resizable=no, width=” + width + “, height=” + height + “, top=” + (screen.height/2 - height/2) + “, left=” + (screen.width/2 - width/2) + “”");  
}  
\</script\>
