<html>
<head>
<title></title>
</head>
<body>
<input name="button" type="button" onClick="Wopen()" value="点击我,打开新窗口!" / >
<script type="text/javascript">
function Wopen(){
window.open('http://www.baidu.com','target=_blank')
}
</script>
</body>
</html>