    	function reSizeIFrame() 
		{
			var oFrame = parent.document.all("content");
			var oBody = parent.content.document.body;		
	   		if (oBody.scrollHeight>100)
			{
				oFrame.style.height = oBody.scrollHeight + (oBody.offsetHeight -oBody.clientHeight);
			}
		 }
