我是定制了一个窗口,但是titlebar = no设置完之后,标题栏依然出现。请问要怎么去掉<html>
<head>
<title>Open Window</title>
<script language="Javascript">
  function OpenWindow()
  {
    thisWin = window.open("", null, "width=300,height=400,status =yes,titlebar = no,resizable=no")    thisWin.document.write("<body><center>This is a new window!</center></body>")
  }
</script>
</head><body>
<center>
<input type="button" value="Creat New Window" onClick="OpenWindow()">
</center>
</body>
</html>