<!-- osetreni objednavkoveho formulare
function napiste_nam(formular)
{
	if (formular.kontakt_osoba.value=="")
	{
		alert("Please fill in the contact person !");
		formular.kontakt_osoba.focus();
		return false;
	}
	if (formular.psc_mesto.value=="")
	{
		alert("Please fill in your zipcode and city !");
		formular.psc_mesto.focus();
		return false;
	}
	if (formular.ulice.value=="")
	{
		alert("Please, fill in your Street/no. !");
		formular.ulice.focus();
		return false;
	}
	if (formular.stat.value=="")
	{
		alert("Please fill in the state !");
		formular.stat.focus();
		return false;
	}
	if (formular.telefon.value=="")
	{
		alert("Please fill in your telephone !");
		formular.telefon.focus();
		return false;
	}
	if(formular.email2.value=="")
	{
		alert("Please fill in your email !");
		formular.email2.focus();
		return false;
	}
	if(window.RegExp)
	{
		re=new RegExp("^[^.]+(\.[^.]+)*@([^.]+[.])+[a-z]{2,3}$");
		if(!re.test(formular.email2.value))
		{
			alert("The address stated is not valid e-mail adress !");
			formular.email2.focus();
			return false;
		}
	}
	if(formular.zprava.value=="")
	{
		alert("Please fill in the subject of the message !");
		formular.zprava.focus();
		return false;
	}
	else
	{
		return true;
	}
}
//-->