/*
	detekcja przeglądarek 
*/
msie_50 = ( navigator.appName.indexOf('Explorer')!=-1 && navigator.appVersion.substr(navigator.appVersion.indexOf("MSIE")+5,3) >= 5.0 && navigator.appVersion.substr(navigator.appVersion.indexOf("MSIE")+5,3) < 5.5 ) ? true : false;
msie_55 = ( navigator.appName.indexOf('Explorer')!=-1 && navigator.appVersion.substr(navigator.appVersion.indexOf("MSIE")+5,3) >= 5.5 && navigator.appVersion.substr(navigator.appVersion.indexOf("MSIE")+5,3) < 6.0 ) ? true : false;
msie_50_and_greater = ( navigator.appName.indexOf('Explorer')!=-1 && navigator.appVersion.substr(navigator.appVersion.indexOf("MSIE")+5,3) >= 5.0) ? true : false;
gecko_based = (navigator.userAgent.indexOf('Gecko')!=-1)?true:false;
opera = (navigator.userAgent.indexOf('Opera') != -1)?true:false;


window.onload = function(){
	BlurLinks();
	PositionLayer();
	MM_preloadImages(
	'imgs/wstecz_over.gif',
	'imgs/gora_over.gif',
	'imgs/scroller/arrow_up_active.gif',
	'imgs/scroller/arrow_down_active.gif'
	);
	scroller_init();
	goToAnchor();
}


/* usuniecie blura z linków*/
function BlurLinks(){
	if(document.getElementById){
			aElement=document.getElementsByTagName('a');
			for(i=0;i<aElement.length;i++){
				aElement[i].onfocus=new Function("if(this.blur)this.blur()");
			}
	}
}
function PositionLayer(){
	PosTop = document.getElementById("Stopka").offsetTop;
	document.getElementById("RootStopka").style.top = PosTop + 'px';
	document.getElementById("RootStopka").style.visibility = "visible";
	document.getElementById("RootStopka").ZIndex = -1;
	// pozycjonowanie dla IE
	PosHeight = document.getElementById("Tel").offsetHeight;
	document.getElementById("Tel").style.top = PosTop - PosHeight-6+'px';
	/*document.getElementById("Tel").style.visibility = "visible";*/
}

/*
	Funkcja do wyświetlania ikon w menu  	
*/
	function showIco( /*mixed*/ id){
		if (document.getElementById(id)){
			if (document.getElementById(id).className == 'Ico'){
				document.getElementById(id).className = 'IcoOn';
				}
			else {
				document.getElementById(id).className = 'Ico';
			}
		}
	}
/*
	Funkcja do wyświetlania notek z oddzialami (kontakt)	
*/
	function showOddzial( /*mixed*/ id){
		if (document.getElementById(id)){
				document.getElementById(id).className = 'oddzial';
		}
	}
/*
	Funkcja do wyświetlania notek z oddzialami (kontakt)	
*/
	function hiddenOddzial( /*mixed*/ id){
		if (document.getElementById(id)){
				document.getElementById(id).className = 'oddzialHidden';
		}
	}
/*
	Funkcja do otwierania popupa z drukowaniem strony
*/
	function PrintPage(){
		window.open('print.php','','top=50, left=50, width=370, height=400, scrollbars=yes');
	}