// JavaScript Document

function opennew (adr, obr, width, height) {
  window.open ("http://www.koldaproduction.cz/fondwell/files/"+adr+"/"+obr, "_blank", "directories=no, width="+width+", height="+height+", innerWidth="+width+", innerHeight="+height+", hotkeys=no, location=no, menubar=no, resizable=no, status=no, toolbar=no");
}

//funkce na XHTML odkazy, otevirajici se 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;
