function resize_me(n)
{

/*    d=0;
	ifObj=document.getElementsByName(n)[0];
	p=(document.all)?'scroll':'offset';
      eval("ifObj.style.height=window.frames[n].document.getElementsByTagName('body')[0]."+p+"Height+"+d);
*/
	
	if(frames['download_iframe'].document.getElementById('inhalt').offsetHeight)
	{
		document.getElementById('download_iframe').style.height = frames['download_iframe'].document.getElementById('inhalt').offsetHeight+60 + 'px';
		document.getElementById('download_iframe').style.width = frames['download_iframe'].document.getElementById('inhalt').offsetWidth + 'px';
	}else if(frames['download_iframe'].document.getElementById('inhalt').scrollHeight){
		document.getElementById('download_iframe').style.height = frames['download_iframe'].document.getElementById('inhalt').scrollHeight+60 + 'px';
		document.getElementById('download_iframe').style.width = frames['download_iframe'].document.getElementById('inhalt').scrollWidth+ 'px';
	}
}

