<!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>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head><body>
<SCRIPT language=JavaScript>
<!--
var new_width=300; //你要固定的浏览器宽度
var new_height=100; //你要固定的浏览器高度
function resizewindow()
{
window.resizeTo(new_width,new_height);
}
resizewindow();
//-->
</SCRIPT>
 </body>
</html>
我想实现:这个IE文件打开后是一个没有滚动条、地址栏、状态栏的自定义大小的窗口。上面的代码已经实现了自定义大小,怎么实现没有滚动条、地址栏、状态栏呢?