// Dynamic Iframe loader
function loadIframe(theURL) {
  document.getElementById("iFrameContent").src=theURL;
}

// resizes Iframe according to content
function resizeMe(obj){ 
  //docHeight = ( iFrameContent.document.height ) || ( iFrameContent.document.body.scrollHeight )
  docHeight = 0
  if ( window.innerHeight > 0 )
  {
    if ( docHeight < window.innerHeight )
    { 
      docHeight = window.innerHeight - 170
    }
  }
  else
  {  // FALLBACK IE, Opera
    docHeight = 700
    obj.style.overflow = auto
  }

  obj.style.height = docHeight + 'px'
}

