vbscript页面跳转问题
<html><head>
<title>用户登陆</title>
<script language=vbscript>
sub openNote_onclick
window.open
"http://www.hao123.com", "note","toolbar=yes","location=yes","directories=yes","status=yes","scrollbars=yes","resizable=yes",width=300,height=200
end sub
sub closeNote_onclick
window.close
end sub
</script>
</head>
<body>
<center>
<h1>打开自定义的窗口</h1>
<input type="button" name="openNote" value="打开">
<input type="button" name="closeNote" value="关闭">
</center>
</body>
</html>
点打开按钮无法转到http://www.hao123.com,为什么