$(document).ready(function () {
			
			
			$("a[rel='_blank']").click(function() {  // rel="_blank" zamiast target="_blank"
			var newWindow = window.open(this.href);
			return false;
			});
			
			$("a").attr('onfocus', 'blur();'); // ukryj fokus
});
			
$(document).ready( function() {
	wysokosc_strony_100_procent();
	$(window).resize(wysokosc_strony_100_procent);
});

function wysokosc_strony_100_procent() {
	if( $(window).height() > $('body').height() ) {
		$( '#pojemnik_tresci' ).height(
			$(window).height() - ( $('body').height() - $('#pojemnik_tresci').height() )
		);
	}
}