﻿// JScript 文件

//iframe的高度随内容自动增大，而不产生下拉滚动条。
function autoResize() {
try {
if(sub_window.document.body.scrollHeight>528)
    document.all["sub_window"].style.height=sub_window.document.body.scrollHeight;
else
    document.all["sub_window"].style.height=528;
}catch(e){}
}