制作无边框窗口问题?
<%@ page contentType="text/html;charset=gb2312" %><html>
<head><title>制作无边框窗口</title></head>
<script language=javascript>
function MM_c()
{
var win=window.open("operation.jsp","_blank","fullscreen=1");
win.resizeTo(558,382);
width=screen.width;
height=screen.height;
win.moveTo((width-558)/2,(height-382)/2);
}
</script>
<body>
<input type=button value=弹出无边框窗口 onclick=MM_c()>
</body>
</html>
为何这段码实现不了啊?