function LoadContent ( strPage ) {
    
    var contentElement = document.getElementById('objContent');
    if ( contentElement )
         contentElement.innerHTML = "<iframe name='objFrame' id='objFrame' onLoad='ResizeMe(this)' width='100%' frameborder=0 SCROLLING=NO " +
                "src='" + strPage + "'></iframe>";
}

function ResizeMe (obj) { 
  var objFrame=document.getElementById('objFrame'); 
  var doc=(objFrame.document)?objFrame.document:objFrame.contentDocument; 
  var iheight = Math.round(doc.body.scrollHeight); 
  iheight += 25; 
  obj.style.height = iheight + 'px'; 
} 
