能否介绍一些关于window.open(...)的重要参数
http://fason.nease.net/code/other/window.htm
http://lucky.myrice.com/javascriptexam/mengxhwindow.htm
<body>
<script>
function max(url){
var w=screen.width;
var h=document.body.availHeight;
window.open(url,,top=0,left=0,width=+w+,height=+h+,toolbar,menubar,status,location)
}
</script>
<a href="javascript:void(max(about:blank))">max</a>
</body>