function goSetHeightIFrameBreed(min_height) 
{
	var el = $('iframePageBreed');  
	
	if (el)
	{
		if (el.document)
		{	
			var frame_height = el.document.body.scrollHeight;
			if (parseInt(min_height) > parseInt(frame_height))
			{
				el.height = min_height;
			}
			else
			{	 
				el.height = frame_height + 20; 
			}
		}
		else 
		{
			el.height = min_height; 
	  }		
	}
}
