function kontrola()
{
if (document.ucet.id.value == "")
{
   document.ucet.id.focus();
   alert ("Nezadali jste přihlašovací ID!");
   return false;
}
if (document.ucet.heslo.value == "")
{
   document.ucet.heslo.focus();
   alert ("Nezadali jste heslo!");
   return false;
}
}
