var bFixFrameHeightInited = false;

var fixFrameHeight = function () {
	var theiframe = window.parent.document.getElementById("X1b_iframe");
	if(!theiframe) { return; }
	
	if (!bFixFrameHeightInited) {
  	theiframe.scrolling = "no";
  	if (!$.browser.ie) {
  	  $(theiframe).parents("[height='100%']").removeAttr('height');
  	}
  	if (document.location.href.indexOf('#') == -1) {
  	  window.parent.scrollTo(0,0);
  	}
  	bFixFrameHeightInited = true;
  }
	
	theiframe.height = document.body.scrollHeight;
}

$(document).ready( function() {
  fixFrameHeight();
});

$(window).bind("resize",fixFrameHeight);