点击按钮弹出一个页面,怎么写?

<input type="text" name="productname" size="14" maxlength="10" style="text-align:center" >
<input type="button" onclick="window.location.href='Search_Productname.asp?productname='+document.getElementById('productname').value;'_blank'" value="产品查询">

点击产品查询 还是原页面打开,现在需要点击后 弹出一个新页面,不知道怎么写了?高手求救下

<script>
function black(){
window.open ("这里写你的新页面", "newwindow", "height=100, width=400, toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, status=no")
}
</script>
<input type="button" onclick="black()" value="产品查询">
温馨提示:答案为网友推荐,仅供参考