/*
function iframeAutoFit(){
	if(self != top) {
		var iframe = parent.document.getElementById(window.name);
		if(iframe) {
			iframe.parentNode.style.height = iframe.style.height;
			iframe.style.height = 10;
			var h = document.body.scrollHeight;
			var minimalHeight = parseInt((window.screen.width*11)/16, 10) - 280;
			h = h < minimalHeight ? minimalHeight : h;
			if(window.navigator.appName == "Microsoft Internet Explorer" && iframe.frameBorder == "1") h += 4;
			iframe.parentNode.style.height = iframe.style.height = h;  
		}
	}
}  
if(document.attachEvent) window.attachEvent("onload",iframeAutoFit);  
else window.addEventListener('load', iframeAutoFit, false); 
*/