function showInfo(which) {
	document.getElementById('info_1').style.display="none";
	document.getElementById('info_2').style.display="none";
	document.getElementById('info_3').style.display="none";
	document.getElementById('info_4').style.display="none";
	document.getElementById('info_'+which).style.display="";
}

function flash(id, kolor, czas, kolor2, czas2)
{
	document.getElementById(id).style.color = kolor;
	setTimeout('flash("' + id + '","' + kolor2 + '",' + czas2 + ',"' + kolor + '",' + czas + ')', czas);
}



function send_info_form() {
	
	  var brakuje_danych=false;
	  var formularz=document.forms['info_form'];
	  var napis="";
	  
	  if (formularz.lokalizacja.value == ""){
	    napis += "Lokalizacja.\n"
	    brakuje_danych=true;
	  }
	  if (formularz.mail.value == ""){
	    napis += "E-mail\n"
	    brakuje_danych=true;
	  }
	  if (formularz.osoba.value == ""){
	    napis += "Osoba kontaktowa.\n"
	    brakuje_danych=true;
	  }
	  if (formularz.telefon.value == ""){
	    napis += "Telefon kontaktowy.\n"
	    brakuje_danych=true;
	  }
	  
	  if (!brakuje_danych)
	    formularz.submit();
	  else
	    alert ("Nie wypełniłeś następujących pól:\n\n" + napis);

}

function popup_window(url,name) {

	var width = 685;
	var height = 460;
	mywindow = window.open(url, name, 'scrollbars=yes, resizable=no, width='+width+', height='+height);
	var position = (document.body.clientWidth-width)/2;	
 	mywindow.moveTo(position,50);
 	
 }
 
