I can run the following via the address bar in Firefox just fine:
javascript:window.open("http://my.hostname.com/test.php?id=12345", "exportWindow");
When I print_r($_GET), I see the $_GET array with the values I specified in the URL. But when I do so in IE7, it just prints "null" on screen.
EDIT
Turns out that was due to a popup blocker. However, the actual code that uses that snipped doesn't work--I get Array() in IE when print_r-ing:
$Page->addJQuery('$("#pageForm div.export").click(function() { ' . $jQueryVars . 'window.open("' . $this->getUrl() . '"' . $jQueryParams . ', "exportWindow"); return false; });');