<!--
function checkFrames() {
    var iframes = window.frames
    var numFrames = iframes.length
    for (var i=0; i < numFrames; i++) {
      var f = iframes[i]
      if ((f.document.readyState=="complete") && (f.document.cached==null)) {
        f.document.body.style.border = "none"
        // Make sure we find the IFrame element since 
        // the layer tag has also an ID the
        // same as the IFrames name.
        var elFrame = document.all[f.name].tags("IFRAME")[0]
        elFrame.style.height = f.document.body.scrollHeight
        f.document.cached = true
      }
    }
    setTimeout("checkFrames()",100)
  }
  checkFrames()
// -->
