// JavaScript Document

function FormSubmit(FormName)
{
    document.forms[FormName].submit();
}

function Redirect(adresa)
{
  var nova_adresa=adresa;
  if ((nova_adresa != '') && (nova_adresa != null))
  {
    window.location=adresa;

  }
  
  return false;
}

function Redir(odkaz, selector)
{
  var nova_adresa = odkaz + '?razeni=' + selector.options[selector.selectedIndex].value;
  window.location = nova_adresa;
  //alert(nova_adresa);
  return false;
}
