BOM:
open(页面的地址url,打开的方式)    //打开一个新的窗口 (页面)
如果url为空,则默认打开一个空白页面
如果打开方式为空,默认为新窗口方式打开
默认前面不用写window
_self  在当前窗口显示

close()  //关闭页面
//1,ff  默认无法关闭 2,chorme 直接关闭  3,IE 询问用户
window.navigator..userAgent     //浏览器信息

window.location //浏览器地址信息

window.location.href //url

window.location.search  //url?后的内容

window.location.hash //url#后的内容


文档宽高及窗口事件
可视区的尺寸
document.documentElement.cilentWidth    宽
document.documentElement.cilentHeight    高

滚动条的距离
document.documentElement.scollTop    //火狐 IE 
document.body.scollTop //谷歌
var scolltop=document.documentElement.scollTop||document.body.scollTop;//火狐 IE  谷歌

odiv.scrollHeight()  //文档的高度
onscroll //当滚动条滚动的时候触发
onresize //当窗口大小发生改变式触发