function resize_iframe() {
	var $iframe = jQuery("#ForumIFrame");

	var current_height = $iframe.css("height");
	var frame_body = $iframe[0].contentWindow.document.body;
  
	if (jQuery($iframe[0].contentWindow.document.body).length > 0) {
		if(current_height != $iframe[0].contentWindow.document.body.scrollHeight) {
			$iframe.css("height", $iframe[0].contentWindow.document.body.scrollHeight);
		}
	}
}

