这个函数哪里错了?
function openWindow(){
var open=comfirm("确认打开新网址?");
if(open==true){
var newurl=prompt("确认打开新窗口?","http://www.imooc.com");
if(newurl!=null){
window.open(newurl,'_blank','width=400px,height=500px,menubar=no,toolbar=no');
}
else{
document.write("失败");
}
}
else{
document.write("失败");
}
}