function is_empty_form()
{
	obj_formular = document.getElementById("formular");
	email = obj_formular.email.value;

	if (email == "")
	{
		window.alert("Nebyl zadán žádný email.");
		return false;
	}
	else return true;
}
