function ResizeIFrame_ADP_BSO(lngHeight)
{
	try
	{
		var objIFrame = document.getElementById("content_win");
		if (typeof (objIFrame) == "undefined" || objIFrame == null)
			return;

		if (typeof (lngHeight) != "number")
			return;

		var lngHeightTaken = document.body.offsetHeight - objIFrame.offsetHeight;

		var strHeight = (lngHeight + 10) + "px";

		objIFrame.setAttribute("height", strHeight);
		objIFrame.style.height = strHeight;
	}
	catch (e)
	{
		// ignore errors - even if we can't resize the iframe 
		//		the user can at least get to the content without errors.
	}
}

