求助。请问怎么改输入框打开的网站
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function openWindow(){
var ssz=confirm("是否打开网站")
if (ssz==true){
var qwe=prompt("请输入网站地址","http://www.imooc.com");
if (qwe!=null){
window.open('http://www.imooc.com','_blank','width=500,height=400,menubar=on,toolbar=on');
}
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
请问怎么写按照输入框的地址打开网站呢
例如在输入框输入打开百度地址 那就打开百度 而不是全部都打开慕课网