求助各位大神关于javascript在chrome游览器的显示的问题

各位大神 我在页面上编辑了用javascript编辑了窗口属性也就是windows.open,新的
窗口打开后,像工具条,菜单栏和resizable这些都没显示出来,求指点;

 <%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
      <script type="text/javascript" language="javascript">
          function openwindow() {
              window.open("HTMLPage.htm", "图片窗口", "toolbars=1,scrollbars=1,location=1,statusbars=1,menubars=1,resizable=1,width=500,height=250")
           }
      </script>
      <style type="text/css">
      body{background-image:(image/IMG_2796.JPG);}
      </style>
</head>
<body>
    <form id="form1" runat="server">
      <asp:Button ID="btnshow" runat="server" Text="点击" OnClientClick="openwindow()" />
    </form>
</body>
</html>

HTMLPage.htm页面弹出来的效果
图片说明

要不,你写成这样试试:
window.open('HTMLPage.htm', '图片窗口', 'toolbars=yes,location=yes,scrollbars=1,location=1,statusbars=1,menubars=1,resizable=1,width=500,height=250')

窗口弹出来了,但是其他组件没出来,你把代码贴给我,我试试!!

window.open第三个参数有些对chrome无效,工具条那种不会显示的。

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">




<br> function Show() {<br> window.open(&quot;HTMLPage.htm&quot;, &quot;视图&quot;,&quot;toolbars:1,location=yes,statusbars=1,menubars=1,width=500px,height=500px,scrollbars=1&quot;);<br> }<br>











<br> function Show() {<br> window.open(&quot;HTMLPage.htm&quot;, &quot;视图&quot;,&quot;toolbars:1,location=yes,statusbars=1,menubars=1,width=500px,height=500px,scrollbars=1&quot;);<br> }<br>









图片说明
图片说明

也可以先对浏览器先进行设置。不要用默认的设置