请教为什么执行不了
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function openWindow()
{
var mycho=confirm("新窗口打开网页吗?");
// 新窗口打开时弹出确认框,是否打开
if (mycho==true)
{
var mymessage=prompt("输入网址");
if (mymessage!=null)
{
window.open(mymessage,'width:400px','height:500px','menubar:no'.'toolbar:no');
}
else
{
alert("没有输入网址,再见");
window.close;
}
}
else
{
window.close;
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>