为什么我的是在目前网页地址的基础上再在此地址后面加入新地址打开网页
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>window.open</title>
<script type="text/javascript">
function Wopen(){
var url;
var url=prompt("输入地址打开新窗口","http//");
var confirmmessage=confirm("确定打开新地址?");
if(confirmmessage==true)
{
window.open(url,'_blank','width=600px,height=400px,top=100px,left=0');
}else{
document.write("打开失败,请重新输入");
alert("请重新输入地址");
}
}
</script>
</head>
<body>
<input name="button" type="button" onClick="Wopen()" value="点击我,打开新窗口!" / >
</body>
</html>