function resizeKlein(iframeName ,hoehe)
{
	if(navigator.appName.indexOf("Explorer") != -1)		//für IE größeren Abstand
	{
		hoehe = hoehe + 250;
	}
	
	if (iframeName == 'iframe') {
		parent.resizeIframe(hoehe);
	} else {
		parent.document.getElementById('iframe_about').style.height = hoehe+'px';
	}
}
