<script type="text/javascript">
// 在不同浏览器通用
var w= document.documentElement.clientWidth
|| document.body.clientWidth;
var h= document.documentElement.clientHeight
|| document.body.clientHeight;
document.write("<b>浏览器窗口可视区域大小</b>");
document.write("<br/>宽度:" + w);
document.write("<br/>高度:" + h);
</script>