function isNumber(id)
{
  obj = document.getElementById(id);
  if(isNaN(obj.value))
  {
  obj.style.background = "#FF0000";
  document.getElementById('bladData').innerHTML = '<span class="srednicz">Musisz wpisa&#263; liczb&#281;!</span>';
  document.getElementById(id).innerHTML = "";
  show('bladData');
  setTimeout(function() 
            {
            document.getElementById(id).style.background= "#FFFFFF";
            Hide('bladData');
            }, 5000);
  
  }

}

function wybierzRodzaj(wartosc)
{

  if(wartosc == 0)
  {
  Hide('submit2'); 
  show('komunikat');
  }
  else if (wartosc == 1 || wartosc == 2)
  {
  show('submit2'); 
  Hide('komunikat');
  }
 

}

function wybierzData(wartosc)
{

  if(wartosc == 0)
  {
  Hide('dataRozpoczecia'); 
  }
  else if (wartosc == 1)
  {
  show('dataRozpoczecia');
  }
 
}

function wybierzZdarzenieMLB(wartosc)
{

  if(wartosc == 0)
  {
  Hide('submit'); 
  show('komunikat');
  }
  else if (wartosc == 4 || wartosc == 5)
  {
      show('wyborLinii');
      Hide('komunikat');
      show('submit'); 
  }
  else if (wartosc == 1 || wartosc == 2 || wartosc == 3)
  {
    Hide('wyborLinii');
    Hide('komunikat');
    show('submit'); 
  }
 
}

