function IframeBaseResizeIframe()
{
    var iHeight;
    var i = parent.document.getElementById("ShowPage");
    if (document.location.pathname.indexOf("chompage.html") > 0)
    {
        iHeight = "645px";
    }
    else
    {
        iHeight = document.body.scrollHeight;
    }
    i.width = "1024px";
    i.height = (iHeight + 20) + "px";
}
