
function obrazek(title,url, x, y)
 {
  var okno = window.open("", "_blank", "width="+x+",height="+y);
  okno.innerWidth = x;
  okno.innerHeight = y;
  okno.document.write("<html><head><title>Dobrá voda, a.s. - "+title+" </title></head>");
  okno.document.write("<body><img src=\""+url+"\" width=\""+x+"\" height=\""+y+"\" style=\"position: absolute; top: 0; left: 0;\" onClick=\"window.close();\" alt=\"zavřít okno/close window\"></body></html>");
  okno.focus();
 }


