大佬们请帮我看一下哪里错了??求助
<script type="text/javascript">
function openwindow(){
var open=confirm("确定要打开新窗口吗?")
if(open==true){
var op=prompt("请输入新窗口网址:","http://www.imooc.com/");
if(op!=null){
window.open(op,'_blank','width=400,height=500,menubar=no,toolbar=no') }
else{alert("哼");}
else{alert("哼");}
}
}
</script>