xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<script>
function open_win()
{
window.open("http://www.w3cschool.cn");
}
</script>
</head>
<body>
<form>
<input type="button" value="Open Window" onclick="open_win()">
</form>
</body>
</html>