if (typeof addOnloadHook != 'function')
{
	function addOnloadHook(fun)
	{
		if (window.addEventListener)
		{
			window.addEventListener('load', fun, false);
		}
		else if (window.attachEvent)
		{
			window.attachEvent('onload', fun);
		}
		else
		{
			window.onload=fun;
		}
	}
}
if (AC_FL_RunContent == 0 || DetectFlashVer == 0)
{
	alert("Ta strona wymaga skryptu AC_RunActiveContent.js.");
}
else
{
	var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
	// hasRightVersion = false; //test
	// wersja programu Flash jest zbyt stara lub nie wykryto wtyczki
	if(!hasRightVersion)
	{
		addOnloadHook(function()
		{
			var flashInfoHTML = '<div style="padding:3px 4px;">Niektóry elelemnty na tej stronie mogą nie działać poprawnie! <a href=http://www.macromedia.com/go/getflash/>Pobierz nowszą wersję programu Flash</a></div>';
			var top = document.body;
			var nel = document.createElement('div');
			nel.style.cssText = 'position:absolute; left:0px; top:0px; background:#ffc !important; color:black !important; font-size:10px !important; width:100% !important; border-bottom: 1px solid black; margin:0'
			nel.innerHTML = flashInfoHTML;
			top.insertBefore(nel, top.firstChild);
		});
		//document.write(flashHTML);
	}
}

