function test_policek()
	{
	for (var i = 0; i<arguments.length; i += 2)
		{
		if (!arguments[i])
			{alert("Vyplte, pros?" + arguments[i+1] + ".");return false;}
		}
	return true;
	}

function potvrzeni()
	{
	var isFull = test_policek(document.frm.objednavajici.value, "jméno a příjmeno objednávajícího",
	document.frm.ulice.value, "Vaši adresu - název ulice",
	document.frm.mesto.value, "Vaši adresu - název města",
	document.psc.mesto.value, "Vaši adresu - poštovní směrovací číslo",
  document.frm.telefon.value, "Váš telefon nebo mobil",
  document.frm.email.value, "Vaši platnou a funkční e-mailovou adresu");
	if (!isFull)
		{return false;}
	}
	
