/* MOP.PL Międzynarodowa Organizacja Pracy */

function auto_iframe()
{
	var ifr = parent.document.getElementById('start');
	var he = ifr.contentWindow.document.body.offsetHeight+10;

	if(/MSIE|Opera/i.test(window.navigator.userAgent))
		var he = ifr.contentWindow.document.body.scrollHeight+10;

	ifr.height = he+'px';
	ifr.scrolling = 'no';
}

window.onload = auto_iframe;

