<!--
/*******************************************************************************
	OLDIE - or Old IE. A script that finds the version of IE you're using,
	and redirects if lower than the set parameter.
	[[ Created by Ryan McLaughlin, www.DaoByDesign.com ]]
*******************************************************************************/
var browser		= navigator.appName
var ver			= navigator.appVersion
var thestart	= parseFloat(ver.indexOf("MSIE"))+1 //This finds the start of the MS version string.
var brow_ver	= parseFloat(ver.substring(thestart+4,thestart+7)) //This cuts out the bit of string we need.

if ((browser=="Microsoft Internet Explorer") && (brow_ver <= 6)) //By default the min. IE ver is set to 6. Change as desired.
	{
            document.write('<div id="iewarning"><div  class=container_12><div class="grid_8 warningText"><img src="http://biblia.apologetyka.com/images/warning.png?20110909022752" alt="UWAGA! Używasz starej wersji Internet Explorer" /><p><strong>Używasz starej wersji Internet Explorer, który nie zapewnia odpowiedniego poziomu bezpieczeństwa</strong></p><p>Strona może wyświetlać się nie poprawnie</p></div><div class="grid_4 warningGetNewerBrowser"><p><a href="http://www.dobreprogramy.pl/Przegladarki-stron-WWW,Kategoria,Windows,16.html" title="Pobierz nowoczesną przeglądarkę" target="_blank">Pobierz nowoczesną przeglądarkę</a></p></div></div></div>');        
	}
//-->
