﻿function AdjustIframeHeight(iframe)
{ 
	var iframe_height = iframe.contentWindow.document.body.scrollHeight < 275 ? 275 : iframe.contentWindow.document.body.scrollHeight;
  iframe.height = iframe_height;
}
