function odloty()
{
document.getElementById('odloty').style.display = 'table';
document.getElementById('button_odloty').style.fontWeight = 'bold';
document.getElementById('przyloty').style.display = 'none';
document.getElementById('button_przyloty').style.fontWeight = 'normal';
}

function przyloty()
{
document.getElementById('przyloty').style.display = 'table';
document.getElementById('button_przyloty').style.fontWeight = 'bold';	
document.getElementById('odloty').style.display = 'none';
document.getElementById('button_odloty').style.fontWeight = 'normal';	
}

