function zapytanie()
{
	if(document.getElementById('imieZap').value=='')
	{
		alert('Proszę podać imię');
		document.getElementById('imieZap').focus();
		return;
	}

	if(document.getElementById('nazwiskoZap').value=='')
	{
		alert('Proszę podać nazwisko');
		document.getElementById('nazwiskoZap').focus();
		return;
	}

	if(document.getElementById('emailZap').value=='')
	{
		alert('Proszę podać email');
		document.getElementById('emailZap').focus();
		return;
	}

	if(document.getElementById('telefonZap').value=='')
	{
		alert('Proszę podać telefon');
		document.getElementById('telefonZap').focus();
		return;
	}

	if(document.getElementById('pytanieZap').value=='')
	{
		alert('Proszę wpisać pytanie');
		document.getElementById('pytanieZap').focus();
		return;
	}
document.getElementById('ReservationForm').submit()
}


