function iResize(frameID)
    {
        if(navigator.appName == "Netscape")
            {document.getElementById(frameID).height = 100;}
        else
            {document.getElementById(frameID).height = 100;}
        //find the height of the internal page
        var the_height = document.getElementById(frameID).contentWindow.document.body.scrollHeight;

        //change the height of the iframe
        if(the_height > 100)
            {document.getElementById(frameID).height = the_height;}
    }
