function displayWindow(url, width, height)
{
 var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=yes,menubar=no' );
}

function liczba()
{ 
 for(x=1; x<=5; x=x+1)
 {
  if(x <= document.rezerwacja.uczestnik.value){
   document.getElementById('uczestnik_'+x).style.display = 'block';
  }else{
   document.getElementById('uczestnik_'+x).style.display = 'none';
  }
 }
}

function inaczej()
{ 
 if(document.rezerwacja.nocleg.selectedIndex == '3'){
  document.getElementById('inaczej').style.display = 'inline';
 }else{
  document.getElementById('inaczej').style.display = 'none';
 }
}

function validuj()
{
 var brakuje_danych=false;
 var form=document.rezerwacja;
 var napis="";
 if (form.zgoda_ub.checked==false){
   napis += "Musisz zgodzic sie z Warunkami Uczestnictwa!\n"
   brakuje_danych=true;
 }
  
 if (!brakuje_danych)
  return true;
 else{
  alert (napis);
  return false;
 }
}

