我正在使用下面的代码打开一个没有导航工具栏的新弹出窗口。但它是用导航工具栏打开的。请帮我解决我的问题。
<script type="text/javascript">
function loadUrl1(newLocation)
{
myRef = window.open('newLocation','mywin',
'left=20,top=20,width=500,height=500,toolbar=0,resizable=0,status=0,location=0,address=0');
}
</script>