// --- skoc() - zmena URL vybranim v 'select'  
function skoc(id) { location = document.getElementById(id).options[document.getElementById(id).selectedIndex].value }

// --- upraveno() - zmena CSS tridy u vybraneho prvku 
function Upraveno(id)  {
  document.getElementById(id).className = "upraveno";
  document.getElementById(id).value = "";
}

// --- popoupOdkazy() - otevreni odkazu v novem okne
function popupOdkazy() {
  if (!document.getElementsByTagName) return false;
  var links = document.getElementsByTagName("a");
  for (var i=0; i < links.length; i++) {
    if (links[i].className.match("popup")) {
      links[i].onclick = function() { return !window.open(this.href); }
    }
  }
  return true;
}
window.onload = popupOdkazy;

// --- popupGalerie() - otevre nove okno
function popupGalerie() {
  if (!document.getElementsByTagName) return false;
  var links = document.getElementsByTagName("a");
  for (var i=0; i < links.length; i++) {
    if (links[i].className.match("galerie")) {
      links[i].onclick = function() { return !window.open(this.href,'','toolbar=no,scrollbars=yes,location=no,status=no,width=980,height=700,resizable=1'); }
    }
  }
  return true;
}
window.onload = popupGalerie;
