// JavaScript Document


function wrum() {
 alert("ok");	
}



function strona(plik) {	 


	
	
  var xml = null;
  var wynik = document.getElementById("wynik");
  wynik.innerHTML = "Trwa ładowanie strony... proszę czekać...";
 
	if (window.XMLHttpRequest) xml = new XMLHttpRequest();
	else if (window.ActiveXObject) xml = new ActiveXObject("Microsoft.XMLHTTP");
 
  if (xml) {
    xml.onreadystatechange = function() {
      if (xml.readyState==4) {
          wynik.innerHTML = xml.responseText;
      }
    }
    xml.open("GET", "podstrony/"+plik+".php", true);
    xml.send(null);
  }
  //return false;

}

function mapa(param)
{
	  
	var pole2 = document.getElementById('mapka');	
  
  if(param == 'ok')
{
	     
    pole2.style.display = "block";
}
  else
    pole2.style.display = "none";
	
}


function wyslij(){
	
  if(document.getElementById('tel').value == "" || document.getElementById('oso').value == "" || document.getElementById('ema').value == "" )
  alert("Nie wypełniono wszystkich wymaganych pól!");
  else  
  document.forms.mail.submit();
	
}
