请问为什么弹不出对话框?
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function opeWindow(){
var insure=confirm("确认打开新窗口吗?");
//弹出对话框,是否打开
if(insure==true){
var newwin=prompt("输入打开的网址:","http://www.imooc.com/");
//输入对话框,确定打开网站,默认http://www.imooc.com/
if(newwin!=null){window.open('newwin','width=400,height=500,menubar=no,toolbar=no');
}
//打开的窗口要求。
}
else return null;
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>