function ExternalLink(URL)
{
  var okno;

  /*
  var vlastnosti;
  var vyska, sirka;

  vyska = Math.round(screen.height * 0.6);
  sirka = Math.round(screen.width * 0.6); 
    
  vlastnosti = "width="+sirka+", height="+vyska+", resizable=yes, scrollbars=yes, toolbar=yes, menubar=yes, adressbar=yes, status=yes, location=yes, directories=yes";
  */
  if (okno = window.open(URL, "_blank"))
    return true;
  else
    return false;
}

function schovejBox(id) {
    var prvek = document.getElementById("box_"+id);
    
    if (prvek.style.display == "none") {
        prvek.style.display = "block";
    }
    else {
        prvek.style.display = "none";
    }
}

function obsahPoznamka(prvek) {
    if (prvek.value == 'napište více o aktivitě...') {
        prvek.value = '';
        prvek.style.color = '#000000';
    }
}

function volbaPolohy(input_x, input_y, x, y, kraj) {
   var prvek_x = document.getElementById(input_x);
   var prvek_y = document.getElementById(input_y);

   var souradncie;
   souradnice = window.open("souradnice.php?kraj="+kraj+"&x="+x+"&y="+y+"&input_x="+input_x+"&input_y="+input_y);    
}

var js_session = "";
