function showHide(id)
{
	document.getElementById(id).style.display = (document.getElementById(id).style.display=="none")?"block":"none";
}

function checkPoptavkaForm(formular) {
    var msg = "";
    if (formular.osoba.value == "") msg += "- Nevyplnili jste Vaše jméno.\n";
    if (formular.ulice.value == "") msg += "- Nevyplnili jste ulici.\n";	
    if (formular.firma.value == "") msg += "- Nevyplnili jste název firmy.\n";	
    if (formular.mesto.value == "") msg += "- Nevyplnili jste město.\n";	
    if (formular.email.value == "") msg += "- Nevyplnili jste e-mail.\n";	

    if(msg == "") formular.submit();
    else alert(msg);
}

function checkCenikForm(formular)
{
	var msg = "";
	if (formular.jmeno.value == "")
	{
		msg += "- Nevyplnili jste Vaše jméno.\n";	
	}
	if (formular.telefon.value == "")
	{
		msg += "- Nevyplnili jste telefon.\n";	
	}
	if (formular.email.value == "")
	{
		msg += "- Nevyplnili jste email.\n";	
	}
	if (formular.adresa.value == "")
	{
		msg += "- Nevyplnili jste adresu.\n";	
	}
	
	if(msg == "")
		return true;
	else
	{
		alert(msg);
		return false;
	}
}
