这段代码哪里有问题?为什么按按钮没反应的
找了很久,没找出来问题。。。求大神指点
<!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 conweb=confirm("是否要打开网站");
if(conweb==true){
var myweb=prompt("输入你要打开的网址","http://www.imooc.com/");}
if myweb!=null{
window.open(myweb,"_blank","width=400px,height=500px,menubar=no,toolbar=no");}
else {
alert("结束");}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>