由于a.htm是第一个打开的页面,所以不能用window.open(),我希望双击 a.htm,a.htm这个页面就没有工具栏和状态栏,并且最大化显示. 
原先为了实现这个功能,我首先是打开一个辅助的页面 "辅助.htm",然后在"辅助.htm"写window.open(),如: 
-----辅助.htm------- 
<script> 
window.open("a.htm","newwindow12", "height=683, width=1016, top=0%, left=0, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, status=yes") 
</script> 
有什么方法一步到位,直接双击就没有工具栏和状态栏,并且最大化显示?