麻烦请问我的代码为什么打开的不是慕课的网址
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function openwindow(){
var add1=(confirm("是否打开"));
if(add1==true)
{
var add2=prompt("是否打开网址","http://www.imooc.com/");
}
if(add2!=null)
{
window.open('add2','_blank','width=400,height=500,toolbar=no,menubar=no');
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>