﻿var IE6 = (navigator.userAgent.indexOf("MSIE 6")>=0) ? true : false;
if(IE6){

	$(function(){
		$('#bsi_container').css('display','none');
		$("<div>")
			.css({
				'position': 'absolute',
				'top': '0px',
				'left': '0px',
				'opacity': '0.75',
				'width': '100%',
				
				//'height': $(window).height(),
				zIndex: 5000
			})
			.appendTo("body");
		$("<div style='background:#171717;text-align:center;border:0px;'><img src='gfx/ie6.png' alt='' /><br /><a href='http://mozilla.com' style='font-family: tahoma; font-size: 14pt;color:#ff0000;'>Aktualizuj przeglądarkę</a>")	
			.css({
				
				'top': '5%',
				'left': '50%',
				marginLeft: -301,
				marginTop: 0,
				width: 602,
				paddingRight: 10,
				height: 430,
				'position': 'absolute',
				zIndex: 6000
			})
			.appendTo("body");
	});		
}



