弹出窗口高度调整自适应

//弹出窗口高度调整自适应
function resetDialogHeight(){
    if(window.dialogArguments == null){
        return; //忽略非模态窗口
    }
    //正文高度
    var height = document.body.scrollHeight;
    //卷进去高度
    var heightTop = document.body.scrollTop;
    window.dialogHeight=(height+heightTop+35)+"px";//防止地下状态栏所以加35
}
window.attachEvent('onload', function(){resetDialogHeight();});