求大神看问题出在哪
function openWindow()
{
var news=confirm("是否打开窗口?");
if(news==true)
{
opens=prompt("打开","http://www.imooc.com/");
if(opens!=null)
{
window.open(opens,"_blank",'width=400px,height=500px,menubar=no,toolbar=no');
}
else
{
alert("哈哈哈");
}
else
{
alert("哈哈哈");
}
}
}