function navigator1() {
 location.href=(document.getElementById("formular").name.options[document.getElementById("formular").name.selectedIndex].value);
}
function navigatordel(){
  deleteTask=confirm("opravdu chcete smazat: "+document.getElementById("formdel").smazat.options[document.getElementById("formdel").smazat.selectedIndex].value+" ?")
  if (deleteTask)
  {
    location.href=(document.getElementById("formdel").smazat.options[document.getElementById("formdel").smazat.selectedIndex].value);
  }
}
