make a link open new popup window (every time)

make a link open new popup window (every time)

Hi.
I have a link that needs to open a new popup window every time its clicked, including if the popup has already been opened. What I have already works fine in Firefox, but not Internet explorer. Here's what I have ...

In the head part of my page ...
  1. <script type="text/javascript" language="JavaScript" src="js/jquery.popupWindow.js"></script>

And in the body ...
  1. <script type="text/javascript">
  2.       $(document).ready(function () {
  3.             $("#dock").popupWindow({

  4.                   height:400, 
  5.                   width:440,
  6.                   centerScreen:1,

  7.                   windowURL:"chat.php"

  8.             });
  9.       });
  10. </script>

And the div ...
  1. <div id="dock"></div>


The Idea is the user clicks the dock image, which opens a new popup window where the user can pick from their online friends to chat with and once they click on one of them, they should be able to open a new popup window and have as many windows open as they want, which is what this code does in Firefox, but I have to get it to do the same thing in Internet Explorer.

I've heard of jQuery being able to add new children, which might work if I can figure it out. Any help would be appreciated. Thanks.