// JavaScript Document
function IloscZnakow(tekst, znakow)
{
  s = tekst.value;
  s = s.slice(0, znakow);
  tekst.value = s;
}

function TloMenu(komorka, akcja)
{
  if(akcja == 'on') komorka.style.backgroundImage = 'url(Image/menu_02.jpg)';
  else              komorka.style.backgroundImage = 'url(Image/menu_01.gif)';
}

function UstawPietra()
{
	var budynek = document.getElementById('budynekWybor').value;
	if (budynek == '31') {
		document.getElementById('pietroWybor').children[7].style.display = 'none';
		document.getElementById('pietroWybor').children[6].style.display = 'none';
	} else {
		document.getElementById('pietroWybor').children[6].style.display = 'block';
		document.getElementById('pietroWybor').children[7].style.display = 'block';
	}
	document.getElementById('pietroWybor').value = "";
}

function Init()
{
/*
	$('.budynekWybor').change(function()
	{
		UstawPietra();
	});
*/
}

if (window.addEventListener) {
	window.addEventListener("load", Init, false);
}else if (window.attachEvent) {
	window.attachEvent("onload", Init);
}

