//============================================================================
//=   功能說明 : 
//=   傳入參數 : 
//=   傳回參數 : 
//============================================================================ 
function f_frameStyleResize(targObj)
{
    var targWin = targObj.parent.document.all[targObj.name];
    
    if(targWin != null)
    {
        var HeightValue = targObj.document.body.scrollHeight
/*
        if(HeightValue < 0)
        {
            HeightValue = 0
        }
*/
        if(HeightValue <= 0)
        {
            HeightValue = 1000
        }


        targWin.style.pixelHeight = HeightValue;
    }
}

//============================================================================
//=   功能說明 : 
//=   傳入參數 : 
//=   傳回參數 : 
//============================================================================ 
function f_iframeResize()
{
    bLoadComplete = true;
    f_frameStyleResize(self);
}

//============================================================================
//=   說明 : 於Window onload時調整iFrame大小
//============================================================================ 
var bLoadComplete = false;
window.onload = f_iframeResize;