<html>
<title>
谢谢
</title>
<head>
<script>
function opennew()
{
     mywin=window.open(' ',' ','height=200,width=100');
     mywin.document.write("不用谢");
mywin.focus();
}
</script>
</head>
<body>
<form>
<input type="button" onclick="opennew()"  value="打开一个新窗口">
</form>
</body>
</html>