function pokaz(splash){
	var splash0 = document.getElementById("glowny");
	var splash1 = document.getElementById("glowny1");
	var splash2 = document.getElementById("glowny2");
	var splash3 = document.getElementById("glowny3");
	var splash_baner = document.getElementById("glowny_baner");
	
	splash0.style.display = "none";
	splash1.style.display = "none";
	splash2.style.display = "none";
	splash3.style.display = "none";
	splash_baner.style.display = "none";
	
	if(splash == 0)
		splash0.style.display = "block";
	if(splash == 1)
		splash1.style.display = "block";
	if(splash == 2)
		splash2.style.display = "block";
	if(splash == 3)
		splash3.style.display = "block";
	if(splash == "baner")
		splash_baner.style.display = "block";
	
}