gast: IE öffnet PopUp, Firefox/Mozilla nicht

Beitrag lesen

Hi, ich habe hier folgendes Problem.
Im IE wird wie durch das JS vorgegeben ein neues PopUP geöffnet, im Firefox/Mozilla passiert aber überhaupt nichts.

Kann mir hierzu jemand ne Hilfe geben?

HTML-Datei:
<html>
<head>
<title>Test</title>
<script src="test.js" type="text/javascript"></script>

</head>
<body text="#000000" bgcolor="#FFFFFF" link="#FF0000" alink="#FF0000" vlink="#FF0000">

<a href="#" onclick="javascript:openBrowserWithoutFrame('http://www.google.de')">Test</a>

</body>
</html>

JS-Datei:
function openBrowserWithoutFrame(target) {
 var browser = new Object();
 browser.isNetscape = false;
 if(navigator.appName.indexOf("Netscape") != -1) browser.isNetscape = true;

if(browser.isNetscape == true) {

locationbar.visible = false;
  menubar.visible = false;
  statusbar.visible = false;
  scrollbars.visible = false;
  toolbar.visible = false;
  personalbar.visible = false;

window.outerWidth = 1015;
  window.outerHeight = 732;
  window.location="jsp/startApplication.jsp";
 } else {
   // Fuer 1024x768
   breite=1015
   hoehe=717
   //Open a new window
   var me= window.open(target,"","location=0,status=yes,width="+breite+",height="+hoehe+",left=0,top=0,resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,copyhistory=no");
 }
}

Für Rückmeldungen bin ich dankbar!