if(typeof XMLHttpRequest == "undefined"){
	bIsIE = true;
}else{
	bIsIE = false;
}


function chowaj_selecty()
{
	if(navigator.appName.indexOf("Microsoft") > -1){
		selecty  = document.getElementsByTagName("select");

		for(var i =0; i < selecty.length; i++)
		{
			//selecty[i].style.position = "relative";
			selecty[i].style.display = "none";
		}
	}
	
}

function pokaz_selecty()
{
	if(navigator.appName.indexOf("Microsoft") > -1){
		selecty  = document.getElementsByTagName("select");
	
		for(var i =0; i < selecty.length; i++)
		{
			//selecty[i].style.position = "relative";
			selecty[i].style.display = "";
		}
	}
}

function idz_na_stronie(kotwica)
{
	link = document.location.toString();
	link = link.replace(/#.*/i, "");
	link += "#" + kotwica;
	document.location = link;
}
